@elliemae/pui-cli 9.0.0-next.6 → 9.0.0-next.7
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/cjs/index.js +4 -1
- package/dist/esm/index.js +4 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -4
package/dist/cjs/index.js
CHANGED
|
@@ -26,9 +26,11 @@ __export(lib_exports, {
|
|
|
26
26
|
jestNodeConfig: () => import_jest_node_config.jestNodeConfig,
|
|
27
27
|
lintStagedConfig: () => import_lint_staged_config.lintStagedConfig,
|
|
28
28
|
loadRoutes: () => import_appRoutes.loadRoutes,
|
|
29
|
+
managerWebpack: () => import_webpack_storybook.managerWebpack,
|
|
29
30
|
prettierConfig: () => import_prettier_config.prettierConfig,
|
|
30
31
|
stylelintConfig: () => import_stylelint_config.stylelintConfig,
|
|
31
|
-
vitestConfig: () => import_vitest_config.vitestConfig
|
|
32
|
+
vitestConfig: () => import_vitest_config.vitestConfig,
|
|
33
|
+
webpackFinal: () => import_webpack_storybook.webpackFinal
|
|
32
34
|
});
|
|
33
35
|
module.exports = __toCommonJS(lib_exports);
|
|
34
36
|
var import_babel_config = require("./babel.config.cjs");
|
|
@@ -42,3 +44,4 @@ var import_vitest_config = require("./testing/vitest.config.js");
|
|
|
42
44
|
var import_jest_node_config = require("./testing/jest.node.config.cjs");
|
|
43
45
|
var import_lint_staged_config = require("./lint-config/lint-staged.config.js");
|
|
44
46
|
var import_appRoutes = require("./server/appRoutes.js");
|
|
47
|
+
var import_webpack_storybook = require("./webpack/webpack.storybook.js");
|
package/dist/esm/index.js
CHANGED
|
@@ -9,6 +9,7 @@ import { vitestConfig } from "./testing/vitest.config.js";
|
|
|
9
9
|
import { jestNodeConfig } from "./testing/jest.node.config.cjs";
|
|
10
10
|
import { lintStagedConfig } from "./lint-config/lint-staged.config.js";
|
|
11
11
|
import { loadRoutes } from "./server/appRoutes.js";
|
|
12
|
+
import { webpackFinal, managerWebpack } from "./webpack/webpack.storybook.js";
|
|
12
13
|
export {
|
|
13
14
|
babelConfig,
|
|
14
15
|
commitlintConfig,
|
|
@@ -18,7 +19,9 @@ export {
|
|
|
18
19
|
jestNodeConfig,
|
|
19
20
|
lintStagedConfig,
|
|
20
21
|
loadRoutes,
|
|
22
|
+
managerWebpack,
|
|
21
23
|
prettierConfig,
|
|
22
24
|
stylelintConfig,
|
|
23
|
-
vitestConfig
|
|
25
|
+
vitestConfig,
|
|
26
|
+
webpackFinal
|
|
24
27
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -9,3 +9,4 @@ export { vitestConfig } from './testing/vitest.config.js';
|
|
|
9
9
|
export { jestNodeConfig } from './testing/jest.node.config.cjs';
|
|
10
10
|
export { lintStagedConfig } from './lint-config/lint-staged.config.js';
|
|
11
11
|
export { loadRoutes } from './server/appRoutes.js';
|
|
12
|
+
export { webpackFinal, managerWebpack } from './webpack/webpack.storybook.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "9.0.0-next.
|
|
3
|
+
"version": "9.0.0-next.7",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -18,9 +18,6 @@
|
|
|
18
18
|
"./releaseConfig": {
|
|
19
19
|
"require": "./dist/cjs/release.config.cjs"
|
|
20
20
|
},
|
|
21
|
-
"./storybook": {
|
|
22
|
-
"require": "./dist/cjs/webpack/webpack.storybook.js"
|
|
23
|
-
},
|
|
24
21
|
"./vitest": {
|
|
25
22
|
"import": "./dist/esm/testing/vitest.config.js"
|
|
26
23
|
},
|