Skip to content

Commit

Permalink
chore(common): publish theme packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Amiditin committed Aug 26, 2024
1 parent 8148c46 commit 3d6e540
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .yarn/versions/3095e196.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
releases:
"@atls-ui-admin/theme": patch
"@atls-ui-parts/theme": major
21 changes: 21 additions & 0 deletions ui-admin/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
"license": "BSD-3-Clause",
"type": "module",
"main": "./src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn library build",
"prepack": "yarn run build",
"postpack": "rm -rf dist"
},
"dependencies": {
"rainbow-sprinkles": "0.17.2"
},
Expand All @@ -18,5 +26,18 @@
"next-themes": "*",
"react": "*",
"react-dom": "*"
},
"publishConfig": {
"access": "public",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts"
}
}
22 changes: 21 additions & 1 deletion ui-parts/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"name": "@atls-ui-parts/theme",
"version": "0.0.1",
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"main": "./src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn library build",
"prepack": "yarn run build",
"postpack": "rm -rf dist"
},
"dependencies": {
"rainbow-sprinkles": "0.17.2"
},
Expand All @@ -16,5 +23,18 @@
"@vanilla-extract/css": "*",
"@vanilla-extract/dynamic": "*",
"react": "*"
},
"publishConfig": {
"access": "public",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts"
}
}

0 comments on commit 3d6e540

Please sign in to comment.