@elliemae/pui-cli 7.27.0-beta.1 → 7.27.0
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/README.md +1 -0
- package/dist/cjs/commands/utils.js +1 -1
- package/dist/cjs/webpack/webpack.dev.babel.js +3 -3
- package/dist/esm/commands/utils.js +1 -1
- package/dist/esm/webpack/webpack.dev.babel.js +3 -3
- package/dist/types/webpack/webpack.base.babel.d.ts +1 -1
- package/dist/types/webpack/webpack.lib.base.babel.d.ts +1 -1
- package/dist/types/webpack/webpack.lib.dev.babel.d.ts +1 -1
- package/dist/types/webpack/webpack.lib.prod.babel.d.ts +1 -1
- package/package.json +48 -48
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ const getModulesInfo = async () => {
|
|
|
101
101
|
};
|
|
102
102
|
const writeAppInfo = async () => {
|
|
103
103
|
const appInfo = {
|
|
104
|
-
timestamp: new Date().toISOString(),
|
|
104
|
+
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
105
105
|
modules: await getModulesInfo(),
|
|
106
106
|
browserSupport: await getSupportedBrowsers(),
|
|
107
107
|
screenReaderSupport: [
|
|
@@ -39,7 +39,6 @@ var import_circular_dependency_plugin = __toESM(require("circular-dependency-plu
|
|
|
39
39
|
var import_mini_css_extract_plugin = __toESM(require("mini-css-extract-plugin"), 1);
|
|
40
40
|
var import_react_refresh_webpack_plugin = __toESM(require("@pmmmwh/react-refresh-webpack-plugin"), 1);
|
|
41
41
|
var import_speed_measure_webpack_plugin = __toESM(require("speed-measure-webpack-plugin"), 1);
|
|
42
|
-
var import_express_static_gzip = __toESM(require("express-static-gzip"), 1);
|
|
43
42
|
var import_middlewares = require("../server/middlewares.js");
|
|
44
43
|
var import_app_routes = require("../server/app-routes.cjs");
|
|
45
44
|
var import_helpers = require("./helpers.js");
|
|
@@ -140,13 +139,14 @@ const devConfig = {
|
|
|
140
139
|
devMiddleware: {
|
|
141
140
|
publicPath: basePath
|
|
142
141
|
},
|
|
143
|
-
historyApiFallback:
|
|
142
|
+
historyApiFallback: {
|
|
143
|
+
index: `${basePath}index.html`
|
|
144
|
+
},
|
|
144
145
|
hot: true,
|
|
145
146
|
open: [basePath],
|
|
146
147
|
port: process.env.PORT || "auto",
|
|
147
148
|
setupMiddlewares: (middlewares, devServer) => {
|
|
148
149
|
(0, import_middlewares.setupDefaultMiddlewares)(devServer.app);
|
|
149
|
-
devServer.app.use((0, import_express_static_gzip.default)("cdn"));
|
|
150
150
|
(0, import_app_routes.loadRoutes)(devServer.app);
|
|
151
151
|
return middlewares;
|
|
152
152
|
}
|
|
@@ -72,7 +72,7 @@ const getModulesInfo = async () => {
|
|
|
72
72
|
};
|
|
73
73
|
const writeAppInfo = async () => {
|
|
74
74
|
const appInfo = {
|
|
75
|
-
timestamp: new Date().toISOString(),
|
|
75
|
+
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
76
76
|
modules: await getModulesInfo(),
|
|
77
77
|
browserSupport: await getSupportedBrowsers(),
|
|
78
78
|
screenReaderSupport: [
|
|
@@ -6,7 +6,6 @@ import CircularDependencyPlugin from "circular-dependency-plugin";
|
|
|
6
6
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
|
7
7
|
import ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin";
|
|
8
8
|
import SpeedMeasurePlugin from "speed-measure-webpack-plugin";
|
|
9
|
-
import expressStaticGzip from "express-static-gzip";
|
|
10
9
|
import { setupDefaultMiddlewares } from "../server/middlewares.js";
|
|
11
10
|
import { loadRoutes } from "../server/app-routes.cjs";
|
|
12
11
|
import {
|
|
@@ -110,13 +109,14 @@ const devConfig = {
|
|
|
110
109
|
devMiddleware: {
|
|
111
110
|
publicPath: basePath
|
|
112
111
|
},
|
|
113
|
-
historyApiFallback:
|
|
112
|
+
historyApiFallback: {
|
|
113
|
+
index: `${basePath}index.html`
|
|
114
|
+
},
|
|
114
115
|
hot: true,
|
|
115
116
|
open: [basePath],
|
|
116
117
|
port: process.env.PORT || "auto",
|
|
117
118
|
setupMiddlewares: (middlewares, devServer) => {
|
|
118
119
|
setupDefaultMiddlewares(devServer.app);
|
|
119
|
-
devServer.app.use(expressStaticGzip("cdn"));
|
|
120
120
|
loadRoutes(devServer.app);
|
|
121
121
|
return middlewares;
|
|
122
122
|
}
|
|
@@ -37,7 +37,7 @@ export function baseConfig(options: any): {
|
|
|
37
37
|
loader: string;
|
|
38
38
|
options: {
|
|
39
39
|
postcssOptions: {
|
|
40
|
-
plugins:
|
|
40
|
+
plugins: (import(".pnpm/postcss@8.4.21/node_modules/postcss").Plugin | import(".pnpm/postcss@8.4.21/node_modules/postcss").Processor)[];
|
|
41
41
|
};
|
|
42
42
|
sourceMap: boolean;
|
|
43
43
|
importLoaders?: undefined;
|
|
@@ -38,7 +38,7 @@ export function baseConfig(options: any): {
|
|
|
38
38
|
loader: string;
|
|
39
39
|
options: {
|
|
40
40
|
postcssOptions: {
|
|
41
|
-
plugins:
|
|
41
|
+
plugins: (import(".pnpm/postcss@8.4.21/node_modules/postcss").Plugin | import(".pnpm/postcss@8.4.21/node_modules/postcss").Processor)[];
|
|
42
42
|
};
|
|
43
43
|
sourceMap: boolean;
|
|
44
44
|
importLoaders?: undefined;
|
|
@@ -38,7 +38,7 @@ declare const _default: {
|
|
|
38
38
|
loader: string;
|
|
39
39
|
options: {
|
|
40
40
|
postcssOptions: {
|
|
41
|
-
plugins:
|
|
41
|
+
plugins: (import(".pnpm/postcss@8.4.21/node_modules/postcss").Plugin | import(".pnpm/postcss@8.4.21/node_modules/postcss").Processor)[];
|
|
42
42
|
};
|
|
43
43
|
sourceMap: boolean;
|
|
44
44
|
importLoaders?: undefined;
|
|
@@ -38,7 +38,7 @@ declare const _default: {
|
|
|
38
38
|
loader: string;
|
|
39
39
|
options: {
|
|
40
40
|
postcssOptions: {
|
|
41
|
-
plugins:
|
|
41
|
+
plugins: (import(".pnpm/postcss@8.4.21/node_modules/postcss").Plugin | import(".pnpm/postcss@8.4.21/node_modules/postcss").Processor)[];
|
|
42
42
|
};
|
|
43
43
|
sourceMap: boolean;
|
|
44
44
|
importLoaders?: undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "7.27.0
|
|
3
|
+
"version": "7.27.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"sonar56x": true
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@axe-core/react": "~4.
|
|
65
|
+
"@axe-core/react": "~4.6.0",
|
|
66
66
|
"@babel/cli": "~7.20.7",
|
|
67
67
|
"@babel/core": "~7.20.12",
|
|
68
68
|
"@babel/eslint-parser": "~7.19.1",
|
|
@@ -78,51 +78,51 @@
|
|
|
78
78
|
"@babel/preset-env": "~7.20.2",
|
|
79
79
|
"@babel/preset-react": "~7.18.6",
|
|
80
80
|
"@babel/preset-typescript": "~7.18.6",
|
|
81
|
-
"@babel/runtime": "~7.20.
|
|
81
|
+
"@babel/runtime": "~7.20.13",
|
|
82
82
|
"@commitlint/cli": "~17.4.2",
|
|
83
83
|
"@commitlint/config-conventional": "~17.4.2",
|
|
84
84
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.6.0",
|
|
85
85
|
"@faker-js/faker": "7.6.0",
|
|
86
|
-
"@nrwl/cli": "15.
|
|
87
|
-
"@nrwl/tao": "15.
|
|
88
|
-
"@nrwl/workspace": "15.
|
|
86
|
+
"@nrwl/cli": "15.6.3",
|
|
87
|
+
"@nrwl/tao": "15.6.3",
|
|
88
|
+
"@nrwl/workspace": "15.6.3",
|
|
89
89
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
|
|
90
90
|
"@semantic-release/changelog": "~6.0.2",
|
|
91
91
|
"@semantic-release/exec": "~6.0.3",
|
|
92
92
|
"@semantic-release/git": "~10.0.1",
|
|
93
|
-
"@storybook/addon-a11y": "~6.5.
|
|
94
|
-
"@storybook/addon-essentials": "~6.5.
|
|
93
|
+
"@storybook/addon-a11y": "~6.5.16",
|
|
94
|
+
"@storybook/addon-essentials": "~6.5.16",
|
|
95
95
|
"@storybook/addon-events": "~6.2.9",
|
|
96
|
-
"@storybook/addon-interactions": "~6.5.
|
|
97
|
-
"@storybook/addon-links": "~6.5.
|
|
98
|
-
"@storybook/addon-storysource": "~6.5.
|
|
99
|
-
"@storybook/builder-vite": "~0.
|
|
100
|
-
"@storybook/builder-webpack5": "~6.5.
|
|
101
|
-
"@storybook/manager-webpack5": "~6.5.
|
|
102
|
-
"@storybook/react": "~6.5.
|
|
103
|
-
"@storybook/theming": "~6.5.
|
|
96
|
+
"@storybook/addon-interactions": "~6.5.16",
|
|
97
|
+
"@storybook/addon-links": "~6.5.16",
|
|
98
|
+
"@storybook/addon-storysource": "~6.5.16",
|
|
99
|
+
"@storybook/builder-vite": "~0.4.0",
|
|
100
|
+
"@storybook/builder-webpack5": "~6.5.16",
|
|
101
|
+
"@storybook/manager-webpack5": "~6.5.16",
|
|
102
|
+
"@storybook/react": "~6.5.16",
|
|
103
|
+
"@storybook/theming": "~6.5.16",
|
|
104
104
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
105
105
|
"@svgr/webpack": "~6.5.1",
|
|
106
|
-
"@swc/cli": "~0.1.
|
|
107
|
-
"@swc/core": "~1.3.
|
|
106
|
+
"@swc/cli": "~0.1.61",
|
|
107
|
+
"@swc/core": "~1.3.34",
|
|
108
108
|
"@swc/jest": "~0.2.24",
|
|
109
109
|
"@testing-library/jest-dom": "~5.16.5",
|
|
110
110
|
"@testing-library/react": "~13.4.0",
|
|
111
111
|
"@testing-library/react-hooks": "~8.0.1",
|
|
112
112
|
"@testing-library/user-event": "~14.4.3",
|
|
113
|
-
"@types/jest": "~29.
|
|
113
|
+
"@types/jest": "~29.4.0",
|
|
114
114
|
"@types/jest-axe": "~3.5.5",
|
|
115
|
-
"@types/node": "~18.
|
|
115
|
+
"@types/node": "~18.13.0",
|
|
116
116
|
"@types/rimraf": "~3.0.2",
|
|
117
117
|
"@types/supertest": "~2.0.12",
|
|
118
118
|
"@types/uuid": "~9.0.0",
|
|
119
119
|
"@types/testing-library__jest-dom": "~5.14.5",
|
|
120
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
121
|
-
"@typescript-eslint/parser": "~5.
|
|
122
|
-
"@vitejs/plugin-react": "~3.0
|
|
123
|
-
"@vitest/coverage-c8": "~0.
|
|
120
|
+
"@typescript-eslint/eslint-plugin": "~5.51.0",
|
|
121
|
+
"@typescript-eslint/parser": "~5.51.0",
|
|
122
|
+
"@vitejs/plugin-react": "~3.1.0",
|
|
123
|
+
"@vitest/coverage-c8": "~0.28.4",
|
|
124
124
|
"autoprefixer": "~10.4.13",
|
|
125
|
-
"axe-core": "~4.6.
|
|
125
|
+
"axe-core": "~4.6.3",
|
|
126
126
|
"babel-plugin-date-fns": "~2.0.0",
|
|
127
127
|
"babel-plugin-dynamic-import-node": "~2.3.3",
|
|
128
128
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
135
135
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
136
136
|
"body-parser": "~1.20.1",
|
|
137
|
-
"browserslist": "~4.21.
|
|
137
|
+
"browserslist": "~4.21.5",
|
|
138
138
|
"browserslist-to-esbuild": "~1.2.0",
|
|
139
139
|
"chalk": "~5.2.0",
|
|
140
140
|
"circular-dependency-plugin": "~5.2.2",
|
|
@@ -151,10 +151,10 @@
|
|
|
151
151
|
"dotenv-webpack": "~8.0.1",
|
|
152
152
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
153
153
|
"enhanced-resolve": "5.12.0",
|
|
154
|
-
"esbuild": "~0.17.
|
|
154
|
+
"esbuild": "~0.17.6",
|
|
155
155
|
"esbuild-loader": "~2.21.0",
|
|
156
156
|
"esbuild-plugin-svgr": "~1.0.1",
|
|
157
|
-
"eslint": "~8.
|
|
157
|
+
"eslint": "~8.33.0",
|
|
158
158
|
"eslint-config-airbnb": "~19.0.4",
|
|
159
159
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
160
160
|
"eslint-config-airbnb-typescript": "~17.0.0",
|
|
@@ -163,19 +163,19 @@
|
|
|
163
163
|
"eslint-import-resolver-babel-module": "~5.3.2",
|
|
164
164
|
"eslint-import-resolver-typescript": "~3.5.3",
|
|
165
165
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
166
|
-
"eslint-plugin-compat": "~4.0
|
|
166
|
+
"eslint-plugin-compat": "~4.1.0",
|
|
167
167
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
168
168
|
"eslint-plugin-import": "~2.27.5",
|
|
169
169
|
"eslint-plugin-jest": "~27.2.1",
|
|
170
|
-
"eslint-plugin-jsdoc": "~39.
|
|
170
|
+
"eslint-plugin-jsdoc": "~39.8.0",
|
|
171
171
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
172
172
|
"eslint-plugin-mdx": "~2.0.5",
|
|
173
173
|
"eslint-plugin-prettier": "~4.2.1",
|
|
174
|
-
"eslint-plugin-react": "~7.32.
|
|
174
|
+
"eslint-plugin-react": "~7.32.2",
|
|
175
175
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
176
176
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
177
177
|
"eslint-plugin-storybook": "~0.6.10",
|
|
178
|
-
"eslint-plugin-testing-library": "~5.
|
|
178
|
+
"eslint-plugin-testing-library": "~5.10.1",
|
|
179
179
|
"eslint-plugin-wdio": "~8.0.14",
|
|
180
180
|
"execa": "~6.1.0",
|
|
181
181
|
"express": "~4.18.2",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"fast-glob": "~3.2.12",
|
|
187
187
|
"find-up": "~6.3.0",
|
|
188
188
|
"find-up-cli": "~5.0.0",
|
|
189
|
-
"happy-dom": "~8.
|
|
189
|
+
"happy-dom": "~8.2.6",
|
|
190
190
|
"helmet-csp": "~3.4.0",
|
|
191
191
|
"html-loader": "~4.2.0",
|
|
192
192
|
"html-webpack-plugin": "~5.5.0",
|
|
@@ -196,36 +196,36 @@
|
|
|
196
196
|
"imports-loader": "~4.0.1",
|
|
197
197
|
"ip": "~1.1.8",
|
|
198
198
|
"jest-axe": "~7.0.0",
|
|
199
|
-
"jest-cli": "~29.
|
|
200
|
-
"jest-environment-jsdom": "~29.
|
|
199
|
+
"jest-cli": "~29.4.2",
|
|
200
|
+
"jest-environment-jsdom": "~29.4.2",
|
|
201
201
|
"jest-sonar-reporter": "~2.0.0",
|
|
202
202
|
"jest-styled-components": "~7.1.1",
|
|
203
|
-
"jest-watch-typeahead": "~2.2.
|
|
203
|
+
"jest-watch-typeahead": "~2.2.2",
|
|
204
204
|
"jscodeshift": "~0.14.0",
|
|
205
205
|
"jsdoc": "~4.0.0",
|
|
206
206
|
"lerna": "~6.4.1",
|
|
207
|
-
"lint-staged": "~13.1.
|
|
207
|
+
"lint-staged": "~13.1.1",
|
|
208
208
|
"mini-css-extract-plugin": "~2.7.2",
|
|
209
209
|
"minimist": "~1.2.7",
|
|
210
210
|
"moment": "~2.29.4",
|
|
211
211
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
212
212
|
"msw": "~0.49.3",
|
|
213
213
|
"node-gyp": "~9.3.1",
|
|
214
|
-
"node-plop": "~0.31.
|
|
214
|
+
"node-plop": "~0.31.1",
|
|
215
215
|
"nodemon": "~2.0.20",
|
|
216
216
|
"normalize-path": "~3.0.0",
|
|
217
|
-
"npm-check-updates": "16.6.
|
|
218
|
-
"pino": "~8.
|
|
217
|
+
"npm-check-updates": "16.6.5",
|
|
218
|
+
"pino": "~8.9.0",
|
|
219
219
|
"pino-pretty": "~9.1.1",
|
|
220
|
-
"plop": "~3.1.
|
|
220
|
+
"plop": "~3.1.2",
|
|
221
221
|
"postcss": "~8.4.21",
|
|
222
222
|
"postcss-html": "~1.5.0",
|
|
223
223
|
"postcss-jsx": "~0.36.4",
|
|
224
224
|
"postcss-loader": "~7.0.2",
|
|
225
225
|
"postcss-markdown": "~1.2.0",
|
|
226
|
-
"postcss-preset-env": "~
|
|
226
|
+
"postcss-preset-env": "~8.0.1",
|
|
227
227
|
"postcss-syntax": "~0.36.2",
|
|
228
|
-
"prettier": "~2.8.
|
|
228
|
+
"prettier": "~2.8.4",
|
|
229
229
|
"pug": "~3.0.2",
|
|
230
230
|
"pug-loader": "~2.4.0",
|
|
231
231
|
"raf": "~3.4.1",
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
"react-test-renderer": "~18.2.0",
|
|
235
235
|
"resize-observer-polyfill": "~1.5.1",
|
|
236
236
|
"resolve-typescript-plugin": "~2.0.0",
|
|
237
|
-
"rimraf": "~4.1.
|
|
237
|
+
"rimraf": "~4.1.2",
|
|
238
238
|
"semantic-release": "~19.0.5",
|
|
239
239
|
"slackify-markdown": "~4.3.1",
|
|
240
240
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
@@ -250,12 +250,12 @@
|
|
|
250
250
|
"ts-node": "~10.9.1",
|
|
251
251
|
"tsc-alias": "~1.8.2",
|
|
252
252
|
"typedoc": "~0.23.24",
|
|
253
|
-
"typescript": "~4.9.
|
|
253
|
+
"typescript": "~4.9.5",
|
|
254
254
|
"update-notifier": "~6.0.2",
|
|
255
255
|
"url-loader": "~4.1.1",
|
|
256
256
|
"uuid": "~9.0.0",
|
|
257
|
-
"vite": "~4.
|
|
258
|
-
"vitest": "~0.
|
|
257
|
+
"vite": "~4.1.1",
|
|
258
|
+
"vitest": "~0.28.4",
|
|
259
259
|
"vite-tsconfig-paths": "~4.0.5",
|
|
260
260
|
"webpack": "~5.75.0",
|
|
261
261
|
"webpack-bundle-analyzer": "~4.7.0",
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"devDependencies": {
|
|
271
271
|
"react": "~18.2.0",
|
|
272
272
|
"react-dom": "~18.2.0",
|
|
273
|
-
"redux": "~4.2.
|
|
273
|
+
"redux": "~4.2.1",
|
|
274
274
|
"redux-saga": "~1.2.2",
|
|
275
275
|
"styled-components": "~5.3.6"
|
|
276
276
|
}
|