@lotte-innovate/ui-component-test 0.1.12 → 0.2.1

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/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@lotte-innovate/ui-component-test",
3
3
  "description": "Lotte UI Library",
4
- "version": "0.1.12",
4
+ "version": "0.2.1",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist/lib",
9
9
  "dist/tailwind.config.d.ts",
10
10
  "dist/tailwind.config.js",
11
- "dist/globals.css"
11
+ "dist/globals.css",
12
+ "dist/styles.css"
12
13
  ],
13
14
  "main": "dist/lib/index.js",
14
15
  "module": "dist/lib/index.js",
@@ -44,11 +45,14 @@
44
45
  "chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
45
46
  "compile": "tsc --jsx react-jsx",
46
47
  "build": "next build && npm run compile",
47
- "build:css": "npx tailwindcss -i src/app/globals.css -o dist/globals.css",
48
+ "build:css": "npx tailwindcss -i src/app/globals.css -o dist/globals.css && npx tailwindcss -i src/app/styles.css -o dist/styles.css",
48
49
  "build-storybook": "storybook build",
50
+ "move:unix": "mv dist/src/lib dist/lib",
51
+ "move:win": "move dist/src/lib dist/lib",
52
+ "move": "cross-env-shell 'if [ \"$OS\" = \"Windows_NT\" ]; then npm run move:win; else npm run move:unix; fi' && rimraf dist/src",
49
53
  "clean": "rimraf dist && mkdir dist",
50
54
  "update-tailwind": "node update-tailwind-import.js",
51
- "build:all": "npm run clean && npm run compile && node src/utils/move.js && npm run build:css && tsc-alias && npm run update-tailwind",
55
+ "build:all": "npm run clean && npm run compile && npm run move && npm run build:css && tsc-alias && npm run update-tailwind",
52
56
  "publish:npm": "npm run build:all && npm publish"
53
57
  },
54
58
  "dependencies": {