@elliemae/pui-cli 9.0.0-next.5 → 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 +19 -20
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
|
},
|
|
@@ -98,8 +95,8 @@
|
|
|
98
95
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
|
|
99
96
|
"@faker-js/faker": "7.6.0",
|
|
100
97
|
"@nrwl/cli": "15.9.3",
|
|
101
|
-
"@nrwl/tao": "16.1.
|
|
102
|
-
"@nrwl/workspace": "16.1.
|
|
98
|
+
"@nrwl/tao": "16.1.3",
|
|
99
|
+
"@nrwl/workspace": "16.1.3",
|
|
103
100
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
|
|
104
101
|
"@semantic-release/changelog": "~6.0.3",
|
|
105
102
|
"@semantic-release/exec": "~6.0.3",
|
|
@@ -113,15 +110,17 @@
|
|
|
113
110
|
"@storybook/blocks": "~7.0.9",
|
|
114
111
|
"@storybook/builder-vite": "~7.0.9",
|
|
115
112
|
"@storybook/builder-webpack5": "~7.0.9",
|
|
113
|
+
"@storybook/jest": "~0.1.0",
|
|
116
114
|
"@storybook/manager-webpack5": "~6.5.16",
|
|
117
115
|
"@storybook/react": "~7.0.9",
|
|
118
116
|
"@storybook/react-vite": "~7.0.9",
|
|
119
117
|
"@storybook/react-webpack5": "~7.0.9",
|
|
118
|
+
"@storybook/testing-library": "~0.1.0",
|
|
120
119
|
"@storybook/theming": "~7.0.9",
|
|
121
120
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
122
|
-
"@svgr/webpack": "~
|
|
121
|
+
"@svgr/webpack": "~8.0.1",
|
|
123
122
|
"@swc/cli": "~0.1.62",
|
|
124
|
-
"@swc/core": "~1.3.
|
|
123
|
+
"@swc/core": "~1.3.57",
|
|
125
124
|
"@swc/jest": "~0.2.26",
|
|
126
125
|
"@testing-library/jest-dom": "~5.16.5",
|
|
127
126
|
"@testing-library/react": "~14.0.0",
|
|
@@ -135,7 +134,7 @@
|
|
|
135
134
|
"@types/jest": "~29.5.1",
|
|
136
135
|
"@types/jest-axe": "~3.5.5",
|
|
137
136
|
"@types/moment-locales-webpack-plugin": "~1.2.3",
|
|
138
|
-
"@types/node": "~20.
|
|
137
|
+
"@types/node": "~20.1.1",
|
|
139
138
|
"@types/normalize-path": "~3.0.0",
|
|
140
139
|
"@types/postcss-preset-env": "~8.0.0",
|
|
141
140
|
"@types/rimraf": "~4.0.5",
|
|
@@ -144,8 +143,8 @@
|
|
|
144
143
|
"@types/uuid": "~9.0.1",
|
|
145
144
|
"@types/testing-library__jest-dom": "~5.14.5",
|
|
146
145
|
"@types/webpack-bundle-analyzer": "~4.6.0",
|
|
147
|
-
"@typescript-eslint/eslint-plugin": "~5.59.
|
|
148
|
-
"@typescript-eslint/parser": "~5.59.
|
|
146
|
+
"@typescript-eslint/eslint-plugin": "~5.59.5",
|
|
147
|
+
"@typescript-eslint/parser": "~5.59.5",
|
|
149
148
|
"@vitejs/plugin-react": "~4.0.0",
|
|
150
149
|
"@vitest/coverage-c8": "~0.31.0",
|
|
151
150
|
"autoprefixer": "~10.4.14",
|
|
@@ -177,7 +176,7 @@
|
|
|
177
176
|
"dotenv": "~16.0.3",
|
|
178
177
|
"dotenv-webpack": "~8.0.1",
|
|
179
178
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
180
|
-
"enhanced-resolve": "5.
|
|
179
|
+
"enhanced-resolve": "5.14.0",
|
|
181
180
|
"esbuild": "~0.17.18",
|
|
182
181
|
"esbuild-loader": "~3.0.1",
|
|
183
182
|
"esbuild-plugin-lodash": "~1.2.0",
|
|
@@ -195,7 +194,7 @@
|
|
|
195
194
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
196
195
|
"eslint-plugin-import": "~2.27.5",
|
|
197
196
|
"eslint-plugin-jest": "~27.2.1",
|
|
198
|
-
"eslint-plugin-jsdoc": "~
|
|
197
|
+
"eslint-plugin-jsdoc": "~44.0.2",
|
|
199
198
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
200
199
|
"eslint-plugin-mdx": "~2.1.0",
|
|
201
200
|
"eslint-plugin-prettier": "~4.2.1",
|
|
@@ -228,7 +227,7 @@
|
|
|
228
227
|
"jest-sonar-reporter": "~2.0.0",
|
|
229
228
|
"jest-styled-components": "~7.1.1",
|
|
230
229
|
"jest-watch-typeahead": "~2.2.2",
|
|
231
|
-
"jscodeshift": "~0.
|
|
230
|
+
"jscodeshift": "~0.15.0",
|
|
232
231
|
"jsdoc": "~4.0.2",
|
|
233
232
|
"lerna": "~6.6.2",
|
|
234
233
|
"lint-staged": "~13.2.2",
|
|
@@ -242,8 +241,8 @@
|
|
|
242
241
|
"node-plop": "~0.31.1",
|
|
243
242
|
"nodemon": "~2.0.22",
|
|
244
243
|
"normalize-path": "~3.0.0",
|
|
245
|
-
"npm-check-updates": "16.10.
|
|
246
|
-
"pino": "~8.
|
|
244
|
+
"npm-check-updates": "16.10.10",
|
|
245
|
+
"pino": "~8.14.1",
|
|
247
246
|
"pino-http": "~8.3.3",
|
|
248
247
|
"pino-pretty": "~10.0.0",
|
|
249
248
|
"plop": "~3.1.2",
|
|
@@ -255,7 +254,7 @@
|
|
|
255
254
|
"postcss-preset-env": "~8.3.2",
|
|
256
255
|
"postcss-syntax": "~0.36.2",
|
|
257
256
|
"prettier": "~2.8.8",
|
|
258
|
-
"prisma": "~4.
|
|
257
|
+
"prisma": "~4.14.0",
|
|
259
258
|
"pug": "~3.0.2",
|
|
260
259
|
"pug-loader": "~2.4.0",
|
|
261
260
|
"raf": "~3.4.1",
|
|
@@ -279,7 +278,7 @@
|
|
|
279
278
|
"swc-loader": "~0.2.3",
|
|
280
279
|
"ts-node": "~10.9.1",
|
|
281
280
|
"tsc-alias": "~1.8.6",
|
|
282
|
-
"typedoc": "~0.24.
|
|
281
|
+
"typedoc": "~0.24.7",
|
|
283
282
|
"typescript": "~5.0.4",
|
|
284
283
|
"update-notifier": "~6.0.2",
|
|
285
284
|
"url-loader": "~4.1.1",
|
|
@@ -289,8 +288,8 @@
|
|
|
289
288
|
"vite-tsconfig-paths": "~4.2.0",
|
|
290
289
|
"webpack": "~5.82.0",
|
|
291
290
|
"webpack-bundle-analyzer": "~4.8.0",
|
|
292
|
-
"webpack-cli": "~5.
|
|
293
|
-
"webpack-dev-server": "~4.
|
|
291
|
+
"webpack-cli": "~5.1.1",
|
|
292
|
+
"webpack-dev-server": "~4.15.0",
|
|
294
293
|
"webpack-manifest-plugin": "~5.0.0",
|
|
295
294
|
"webpack-merge": "~5.8.0",
|
|
296
295
|
"whatwg-fetch": "~3.6.2",
|