@likelion-design/ui 1.0.22 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/colors.css.css +1 -1
- package/dist/colors.css.css.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +47 -307
- package/dist/index.d.ts +47 -307
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likelion-design/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.25",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,11 +26,14 @@
|
|
|
26
26
|
"build": "npm run build:tokens && tsup",
|
|
27
27
|
"lint": "eslint",
|
|
28
28
|
"storybook": "node tokens/scripts/sync-manager-tokens.mjs && storybook dev -p 6006",
|
|
29
|
-
"build-storybook": "rm -rf storybook-static && node tokens/scripts/sync-manager-tokens.mjs && storybook build",
|
|
29
|
+
"build-storybook": "rm -rf storybook-static && node tokens/scripts/sync-manager-tokens.mjs && node scripts/generate-sitemap.mjs && storybook build",
|
|
30
30
|
"build:tokens": "node tokens/scripts/diff-tokens.mjs && node tokens/scripts/merge-tokens.mjs && style-dictionary build --config style-dictionary.config.mjs && node tokens/scripts/generate-tailwind-preset.mjs && node tokens/scripts/sync-manager-tokens.mjs && node tokens/scripts/validate-tokens.mjs",
|
|
31
31
|
"sync:tokens": "node tokens/scripts/sync-tokens.mjs",
|
|
32
32
|
"pull": "sh scripts/pull.sh",
|
|
33
|
-
"deploy": "sh scripts/deploy.sh"
|
|
33
|
+
"deploy": "sh scripts/deploy.sh",
|
|
34
|
+
"mcp:sync-version": "node -e \"const p=require('./package.json');const m=require('./mcp-server/package.json');m.version=p.version;require('fs').writeFileSync('./mcp-server/package.json',JSON.stringify(m,null,2)+'\\n')\"",
|
|
35
|
+
"mcp:build": "cd mcp-server && npm run build:publish",
|
|
36
|
+
"publish:all": "npm run build && npm publish && npm run mcp:sync-version && npm run mcp:build && cd mcp-server && npm publish"
|
|
34
37
|
},
|
|
35
38
|
"engines": {
|
|
36
39
|
"node": ">=20.0.0"
|