@xola/ui-kit 2.2.0-0 → 2.2.0-2
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 +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xola/ui-kit",
|
|
3
|
-
"version": "2.2.0-
|
|
3
|
+
"version": "2.2.0-2",
|
|
4
4
|
"description": "Xola UI Kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -11,22 +11,24 @@
|
|
|
11
11
|
],
|
|
12
12
|
"main": "build/ui-kit.umd.js",
|
|
13
13
|
"module": "build/ui-kit.mjs",
|
|
14
|
-
"types": "index.d.ts",
|
|
14
|
+
"types": "build/src/index.d.ts",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"dev": "node scripts/prepare && start-storybook -p 6006 -s public --no-manager-cache",
|
|
19
|
-
"storybook": "node scripts/prepare && start-storybook -p 6006 -s public",
|
|
20
|
-
"build": "node scripts/prepare && vite build",
|
|
16
|
+
"prebuild": "node scripts/prepare",
|
|
17
|
+
"build": "npx tsc && vite build",
|
|
21
18
|
"watch": "npm run build -- --watch",
|
|
19
|
+
"prestart": "node scripts/prepare",
|
|
20
|
+
"start": "start-storybook -p 6006 --no-open --quiet",
|
|
21
|
+
"predev": "node scripts/prepare",
|
|
22
|
+
"dev": "start-storybook -p 6006 --no-open --no-manager-cache",
|
|
22
23
|
"clean": "rm -rf node_modules/.vite",
|
|
23
|
-
"build:storybook": "node scripts/prepare && build-storybook -s public",
|
|
24
|
-
"lint": "xola-lint --ignore src/stories src",
|
|
25
24
|
"lint:fix": "xola-lint --ignore src/stories src --fix",
|
|
26
25
|
"lint:report": "xola-lint --ignore src/stories src --reporter=json src > eslint_report.json && echo 'ESLint report saved to eslint_report.json'",
|
|
27
26
|
"format": "prettier --write src",
|
|
28
|
-
"test": "
|
|
29
|
-
"
|
|
27
|
+
"test": "jest",
|
|
28
|
+
"build:storybook": "npm run prebuild && build-storybook",
|
|
29
|
+
"chromatic": "chromatic --exit-zero-on-changes --build-script-name build:storybook",
|
|
30
|
+
"prepublish": "npm run build",
|
|
31
|
+
"publish": "np --no-tests --any-branch"
|
|
30
32
|
},
|
|
31
33
|
"dependencies": {
|
|
32
34
|
"@headlessui/react": "^1.4.0",
|
|
@@ -67,7 +69,7 @@
|
|
|
67
69
|
"lodash": "^4.17.21",
|
|
68
70
|
"postcss": "^8.4.5",
|
|
69
71
|
"prettier": "^2.7.1",
|
|
70
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
72
|
+
"prettier-plugin-tailwindcss": "^0.2.8",
|
|
71
73
|
"react": "^17.0.2",
|
|
72
74
|
"react-dom": "^17.0.2",
|
|
73
75
|
"storybook-css-modules-preset": "^1.1.1",
|