@lotte-innovate/ui-component-test 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/globals.css +63960 -63890
- package/package.json +6 -3
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lotte-innovate/ui-component-test",
|
3
3
|
"description": "Lotte UI Library",
|
4
|
-
"version": "0.1.
|
4
|
+
"version": "0.1.3",
|
5
5
|
"private": false,
|
6
6
|
"type": "module",
|
7
7
|
"files": [
|
@@ -43,9 +43,12 @@
|
|
43
43
|
"lint": "next lint",
|
44
44
|
"storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
|
45
45
|
"build-storybook": "storybook build",
|
46
|
-
"move-files": "
|
46
|
+
"move-files": "move dist/src/lib dist/lib && rimraf dist/src",
|
47
47
|
"build:css": "npx tailwindcss -i src/app/globals.css -o dist/globals.css",
|
48
|
-
"publish:npm": "rimraf dist && mkdir dist && tsc && npm run move
|
48
|
+
"publish:npm": "rimraf dist && mkdir dist && tsc && npm run move && npm run build:css && tsc-alias && node update-tailwind-import.js",
|
49
|
+
"move:unix": "mv dist/src/lib dist/lib && rimraf dist/src",
|
50
|
+
"move:win": "move dist/src/lib dist/lib && rimraf dist/src",
|
51
|
+
"move": "cross-env-shell 'if [ \"$OS\" = \"Windows_NT\" ]; then npm run move:win; else npm run move:unix; fi'",
|
49
52
|
"chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
|
50
53
|
},
|
51
54
|
"dependencies": {
|