@itcase/storybook-config 1.1.47 → 1.1.48
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.
|
@@ -4,17 +4,13 @@ import { ADDONS_WEBPACK } from '../addons/addonsWebpack.js'
|
|
|
4
4
|
import { AUTHORIZATION } from '../authorization.js'
|
|
5
5
|
import { MAIN_CONFIG_VITE } from '../config/mainConfigVite.js'
|
|
6
6
|
import { MAIN_CONFIG_WEBPACK } from '../config/mainConfigWebpack.js'
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
FRAMEWORK_WEBPACK,
|
|
11
|
-
} from '../framework/'
|
|
7
|
+
import { FRAMEWORK_NEXTJS } from '../framework/frameworkNextJs.js'
|
|
8
|
+
import { FRAMEWORK_VITE } from '../framework/frameworkVite.js'
|
|
9
|
+
import { FRAMEWORK_WEBPACK } from '../framework/frameworkWebpack.js'
|
|
12
10
|
import { REFS } from '../refs.js'
|
|
13
|
-
import {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
STATIC_DIRS_WEBPACK,
|
|
17
|
-
} from '../static'
|
|
11
|
+
import { STATIC_DIRS_NEXTJS } from '../static/staticDirsNextJs.js'
|
|
12
|
+
import { STATIC_DIRS_VITE } from '../static/staticDirsVite.js'
|
|
13
|
+
import { STATIC_DIRS_WEBPACK } from '../static/staticDirsWebpack.js'
|
|
18
14
|
import { STATUS } from '../status.js'
|
|
19
15
|
|
|
20
16
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/storybook-config",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.48",
|
|
4
4
|
"author": "ITCase",
|
|
5
5
|
"description": "Code style linter configuration presets",
|
|
6
6
|
"engines": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"build-js": "rm -rf dist && NODE_ENV=production rollup -c",
|
|
12
12
|
"prepare": "npx husky install",
|
|
13
13
|
"prepack": "npm run build",
|
|
14
|
-
"storybook-
|
|
14
|
+
"storybook-webpack": "storybook dev -p 6006 --config-dir .storybook-webpack",
|
|
15
15
|
"storybook-next-js": "storybook dev -p 6006 -c .storybook-next-js",
|
|
16
16
|
"storybook-vite": "storybook dev -p 6006 -c .storybook-vite",
|
|
17
17
|
"semantic-release": "semantic-release",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@etchteam/storybook-addon-status": "^5.0.0",
|
|
70
|
-
"@itcase/config": "^1.0.
|
|
70
|
+
"@itcase/config": "^1.0.24",
|
|
71
71
|
"@itcase/storybook-addon-auth": "^1.0.5",
|
|
72
72
|
"@storybook/addon-designs": "^10.0.1",
|
|
73
73
|
"@storybook/addon-links": "^9.0.16",
|
|
@@ -83,8 +83,7 @@
|
|
|
83
83
|
"msw": "^2.10.4",
|
|
84
84
|
"msw-storybook-addon": "^2.0.5",
|
|
85
85
|
"react-docgen": "^8.0.0",
|
|
86
|
-
"react-docgen-typescript-plugin": "^1.0.8"
|
|
87
|
-
"storybook-addon-source-link": "^0.2.1"
|
|
86
|
+
"react-docgen-typescript-plugin": "^1.0.8"
|
|
88
87
|
},
|
|
89
88
|
"devDependencies": {
|
|
90
89
|
"@commitlint/cli": "^19.8.1",
|
|
@@ -98,7 +97,6 @@
|
|
|
98
97
|
"@semantic-release/changelog": "^6.0.3",
|
|
99
98
|
"@semantic-release/git": "^10.0.1",
|
|
100
99
|
"@semantic-release/release-notes-generator": "14.0.3",
|
|
101
|
-
"@storybook/addon-onboarding": "^9.0.16",
|
|
102
100
|
"@types/react": "^18",
|
|
103
101
|
"@types/react-dom": "^18",
|
|
104
102
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|