create-rslib 0.12.0 → 0.12.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/dist/index.js +117 -20
- package/package.json +5 -5
- package/template-[node-dual]-[]-ts/package.json +1 -1
- package/template-[node-dual]-[rstest]-js/package.json +24 -0
- package/template-[node-dual]-[rstest]-js/rslib.config.mjs +14 -0
- package/template-[node-dual]-[rstest]-js/rstest.config.js +3 -0
- package/template-[node-dual]-[rstest]-js/src/index.js +1 -0
- package/template-[node-dual]-[rstest]-js/tests/index.test.js +7 -0
- package/template-[node-dual]-[rstest]-ts/package.json +28 -0
- package/template-[node-dual]-[rstest]-ts/rslib.config.ts +15 -0
- package/template-[node-dual]-[rstest]-ts/rstest.config.ts +3 -0
- package/template-[node-dual]-[rstest]-ts/src/index.ts +1 -0
- package/template-[node-dual]-[rstest]-ts/tests/index.test.ts +7 -0
- package/template-[node-dual]-[rstest]-ts/tsconfig.json +15 -0
- package/template-[node-dual]-[vitest]-ts/package.json +1 -1
- package/template-[node-esm]-[]-ts/package.json +1 -1
- package/template-[node-esm]-[rstest]-js/package.json +22 -0
- package/template-[node-esm]-[rstest]-js/rslib.config.mjs +10 -0
- package/template-[node-esm]-[rstest]-js/rstest.config.js +3 -0
- package/template-[node-esm]-[rstest]-js/src/index.js +1 -0
- package/template-[node-esm]-[rstest]-js/tests/index.test.js +7 -0
- package/template-[node-esm]-[rstest]-ts/package.json +26 -0
- package/template-[node-esm]-[rstest]-ts/rslib.config.ts +11 -0
- package/template-[node-esm]-[rstest]-ts/rstest.config.ts +3 -0
- package/template-[node-esm]-[rstest]-ts/src/index.ts +1 -0
- package/template-[node-esm]-[rstest]-ts/tests/index.test.ts +7 -0
- package/template-[node-esm]-[rstest]-ts/tsconfig.json +15 -0
- package/template-[node-esm]-[vitest]-ts/package.json +1 -1
- package/template-[react]-[]-ts/package.json +1 -1
- package/template-[react]-[rstest,storybook]-js/.storybook/main.js +36 -0
- package/template-[react]-[rstest,storybook]-js/.storybook/preview.js +12 -0
- package/template-[react]-[rstest,storybook]-js/package.json +45 -0
- package/template-[react]-[rstest,storybook]-js/rslib.config.mjs +20 -0
- package/template-[react]-[rstest,storybook]-js/rstest.config.js +8 -0
- package/template-[react]-[rstest,storybook]-js/rstest.setup.js +4 -0
- package/template-[react]-[rstest,storybook]-js/src/Button.jsx +21 -0
- package/template-[react]-[rstest,storybook]-js/src/button.css +34 -0
- package/template-[react]-[rstest,storybook]-js/src/index.jsx +1 -0
- package/template-[react]-[rstest,storybook]-js/stories/Button.stories.jsx +50 -0
- package/template-[react]-[rstest,storybook]-js/tests/index.test.jsx +11 -0
- package/template-[react]-[rstest,storybook]-ts/.storybook/main.ts +37 -0
- package/template-[react]-[rstest,storybook]-ts/.storybook/preview.ts +14 -0
- package/template-[react]-[rstest,storybook]-ts/package.json +49 -0
- package/template-[react]-[rstest,storybook]-ts/rslib.config.ts +21 -0
- package/template-[react]-[rstest,storybook]-ts/rstest.config.ts +8 -0
- package/template-[react]-[rstest,storybook]-ts/rstest.setup.ts +4 -0
- package/template-[react]-[rstest,storybook]-ts/src/Button.tsx +29 -0
- package/template-[react]-[rstest,storybook]-ts/src/button.css +34 -0
- package/template-[react]-[rstest,storybook]-ts/src/index.tsx +1 -0
- package/template-[react]-[rstest,storybook]-ts/stories/Button.stories.ts +52 -0
- package/template-[react]-[rstest,storybook]-ts/tests/index.test.tsx +11 -0
- package/template-[react]-[rstest,storybook]-ts/tests/test.d.ts +1 -0
- package/template-[react]-[rstest,storybook]-ts/tests/tsconfig.json +4 -0
- package/template-[react]-[rstest,storybook]-ts/tsconfig.json +14 -0
- package/template-[react]-[rstest]-js/package.json +31 -0
- package/template-[react]-[rstest]-js/rslib.config.mjs +20 -0
- package/template-[react]-[rstest]-js/rstest.config.js +8 -0
- package/template-[react]-[rstest]-js/rstest.setup.js +4 -0
- package/template-[react]-[rstest]-js/src/Button.jsx +21 -0
- package/template-[react]-[rstest]-js/src/button.css +34 -0
- package/template-[react]-[rstest]-js/src/index.jsx +1 -0
- package/template-[react]-[rstest]-js/tests/index.test.jsx +11 -0
- package/template-[react]-[rstest]-ts/package.json +35 -0
- package/template-[react]-[rstest]-ts/rslib.config.ts +21 -0
- package/template-[react]-[rstest]-ts/rstest.config.ts +8 -0
- package/template-[react]-[rstest]-ts/rstest.setup.ts +4 -0
- package/template-[react]-[rstest]-ts/src/Button.tsx +29 -0
- package/template-[react]-[rstest]-ts/src/button.css +34 -0
- package/template-[react]-[rstest]-ts/src/index.tsx +1 -0
- package/template-[react]-[rstest]-ts/tests/index.test.tsx +11 -0
- package/template-[react]-[rstest]-ts/tests/test.d.ts +1 -0
- package/template-[react]-[rstest]-ts/tests/tsconfig.json +4 -0
- package/template-[react]-[rstest]-ts/tsconfig.json +14 -0
- package/template-[react]-[storybook,vitest]-js/package.json +9 -9
- package/template-[react]-[storybook,vitest]-ts/package.json +10 -10
- package/template-[react]-[storybook]-js/package.json +8 -8
- package/template-[react]-[storybook]-ts/package.json +9 -9
- package/template-[react]-[vitest]-js/package.json +1 -1
- package/template-[react]-[vitest]-ts/package.json +2 -2
- package/template-[vue]-[rstest,storybook]-js/.storybook/main.js +35 -0
- package/template-[vue]-[rstest,storybook]-js/.storybook/preview.js +12 -0
- package/template-[vue]-[rstest,storybook]-js/package.json +47 -0
- package/template-[vue]-[rstest,storybook]-js/rslib.config.ts +15 -0
- package/template-[vue]-[rstest,storybook]-js/rstest.config.js +8 -0
- package/template-[vue]-[rstest,storybook]-js/rstest.setup.js +4 -0
- package/template-[vue]-[rstest,storybook]-js/src/Button.vue +43 -0
- package/template-[vue]-[rstest,storybook]-js/src/index.js +1 -0
- package/template-[vue]-[rstest,storybook]-js/src/style.css +34 -0
- package/template-[vue]-[rstest,storybook]-js/stories/Button.stories.js +50 -0
- package/template-[vue]-[rstest,storybook]-js/tests/index.test.js +16 -0
- package/template-[vue]-[rstest,storybook]-ts/.storybook/main.ts +36 -0
- package/template-[vue]-[rstest,storybook]-ts/.storybook/preview.ts +12 -0
- package/template-[vue]-[rstest,storybook]-ts/package.json +49 -0
- package/template-[vue]-[rstest,storybook]-ts/rslib.config.ts +15 -0
- package/template-[vue]-[rstest,storybook]-ts/rstest.config.ts +8 -0
- package/template-[vue]-[rstest,storybook]-ts/rstest.setup.ts +4 -0
- package/template-[vue]-[rstest,storybook]-ts/src/Button.vue +35 -0
- package/template-[vue]-[rstest,storybook]-ts/src/index.ts +1 -0
- package/template-[vue]-[rstest,storybook]-ts/src/style.css +34 -0
- package/template-[vue]-[rstest,storybook]-ts/stories/Button.stories.js +50 -0
- package/template-[vue]-[rstest,storybook]-ts/tests/index.test.ts +16 -0
- package/template-[vue]-[rstest,storybook]-ts/tests/test.d.ts +1 -0
- package/template-[vue]-[rstest,storybook]-ts/tests/tsconfig.json +4 -0
- package/template-[vue]-[rstest,storybook]-ts/tsconfig.json +24 -0
- package/template-[vue]-[rstest]-js/package.json +33 -0
- package/template-[vue]-[rstest]-js/rslib.config.ts +15 -0
- package/template-[vue]-[rstest]-js/rstest.config.js +8 -0
- package/template-[vue]-[rstest]-js/rstest.setup.js +4 -0
- package/template-[vue]-[rstest]-js/src/Button.vue +43 -0
- package/template-[vue]-[rstest]-js/src/index.js +1 -0
- package/template-[vue]-[rstest]-js/src/style.css +34 -0
- package/template-[vue]-[rstest]-js/tests/index.test.js +16 -0
- package/template-[vue]-[rstest]-ts/package.json +35 -0
- package/template-[vue]-[rstest]-ts/rslib.config.ts +15 -0
- package/template-[vue]-[rstest]-ts/rstest.config.ts +8 -0
- package/template-[vue]-[rstest]-ts/rstest.setup.ts +4 -0
- package/template-[vue]-[rstest]-ts/src/Button.vue +35 -0
- package/template-[vue]-[rstest]-ts/src/index.ts +1 -0
- package/template-[vue]-[rstest]-ts/src/style.css +34 -0
- package/template-[vue]-[rstest]-ts/tests/index.test.ts +16 -0
- package/template-[vue]-[rstest]-ts/tests/test.d.ts +1 -0
- package/template-[vue]-[rstest]-ts/tests/tsconfig.json +4 -0
- package/template-[vue]-[rstest]-ts/tsconfig.json +24 -0
- package/template-[vue]-[storybook,vitest]-js/package.json +9 -9
- package/template-[vue]-[storybook,vitest]-ts/package.json +9 -9
- package/template-[vue]-[storybook]-js/package.json +8 -8
- package/template-[vue]-[storybook]-ts/package.json +8 -8
- package/template-[vue]-[vitest]-js/package.json +1 -1
- package/template-[vue]-[vitest]-ts/package.json +1 -1
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
"storybook": "storybook dev"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@rsbuild/core": "1.5.0-beta.
|
|
22
|
+
"@rsbuild/core": "1.5.0-beta.4",
|
|
23
23
|
"@rslib/core": "workspace:*",
|
|
24
|
-
"@storybook/addon-docs": "^9.1.
|
|
24
|
+
"@storybook/addon-docs": "^9.1.2",
|
|
25
25
|
"@storybook/addon-essentials": "^9.0.0-alpha.12",
|
|
26
26
|
"@storybook/addon-interactions": "^9.0.0-alpha.10",
|
|
27
|
-
"@storybook/addon-links": "^9.1.
|
|
28
|
-
"@storybook/addon-onboarding": "^9.1.
|
|
27
|
+
"@storybook/addon-links": "^9.1.2",
|
|
28
|
+
"@storybook/addon-onboarding": "^9.1.2",
|
|
29
29
|
"@storybook/blocks": "^9.0.0-alpha.17",
|
|
30
30
|
"@storybook/test": "^9.0.0-alpha.2",
|
|
31
|
-
"@storybook/vue3": "^9.1.
|
|
31
|
+
"@storybook/vue3": "^9.1.2",
|
|
32
32
|
"rsbuild-plugin-unplugin-vue": "^0.1.0",
|
|
33
|
-
"storybook": "^9.1.
|
|
34
|
-
"storybook-addon-rslib": "^2.0.
|
|
35
|
-
"storybook-vue3-rsbuild": "^2.0.
|
|
33
|
+
"storybook": "^9.1.2",
|
|
34
|
+
"storybook-addon-rslib": "^2.0.4",
|
|
35
|
+
"storybook-vue3-rsbuild": "^2.0.4",
|
|
36
36
|
"typescript": "^5.9.2",
|
|
37
37
|
"vue": "^3.5.18",
|
|
38
38
|
"vue-tsc": "^3.0.5"
|