@elliemae/pui-cli 9.0.0-next.68 → 9.0.0-next.69
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/commands/lint.js +1 -1
- package/dist/cjs/lint-config/eslint.config.js +185 -193
- package/dist/cjs/server/appRoutes.js +3 -1
- package/dist/cjs/server/csp.js +16 -12
- package/dist/cjs/server/index.js +22 -13
- package/dist/cjs/server/middlewares.js +11 -8
- package/dist/esm/commands/lint.js +1 -1
- package/dist/esm/lint-config/eslint.config.js +185 -193
- package/dist/esm/server/appRoutes.js +3 -1
- package/dist/esm/server/csp.js +16 -12
- package/dist/esm/server/index.js +22 -13
- package/dist/esm/server/middlewares.js +11 -8
- package/dist/types/eslint.config.d.ts +1 -1
- package/dist/types/lib/lint-config/eslint.config.d.ts +2 -2
- package/dist/types/lib/server/csp.d.ts +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/library.tsconfig.json +4 -4
- package/package.json +48 -42
package/library.tsconfig.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"lib": ["dom", "dom.iterable", "
|
|
4
|
-
"moduleResolution": "
|
|
5
|
-
"target": "
|
|
6
|
-
"module": "
|
|
3
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
4
|
+
"moduleResolution": "nodenext",
|
|
5
|
+
"target": "esnext",
|
|
6
|
+
"module": "nodenext",
|
|
7
7
|
"allowJs": true,
|
|
8
8
|
"allowSyntheticDefaultImports": true,
|
|
9
9
|
"strict": true,
|
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.69",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/cjs/index.cjs",
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
"@babel/cli": "~7.28.3",
|
|
83
83
|
"@babel/core": "~7.28.4",
|
|
84
84
|
"@babel/node": "~7.28.0",
|
|
85
|
-
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
86
85
|
"@babel/plugin-proposal-export-default-from": "~7.27.1",
|
|
87
86
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
88
87
|
"@babel/plugin-syntax-import-assertions": "~7.27.1",
|
|
88
|
+
"@babel/plugin-transform-class-properties": "~7.27.1",
|
|
89
89
|
"@babel/plugin-transform-modules-commonjs": "~7.27.1",
|
|
90
90
|
"@babel/plugin-transform-react-constant-elements": "~7.27.1",
|
|
91
91
|
"@babel/plugin-transform-react-inline-elements": "~7.27.1",
|
|
@@ -97,8 +97,10 @@
|
|
|
97
97
|
"@babel/runtime": "~7.28.4",
|
|
98
98
|
"@commitlint/cli": "~19.8.1",
|
|
99
99
|
"@commitlint/config-conventional": "~19.8.1",
|
|
100
|
+
"@docusaurus/types": "~3.8.1",
|
|
100
101
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.13.0",
|
|
101
102
|
"@eslint/compat": "~1.3.2",
|
|
103
|
+
"@eslint/config-helpers": "~0.3.1",
|
|
102
104
|
"@eslint/config-inspector": "^1.2.0",
|
|
103
105
|
"@eslint/eslintrc": "~3.3.1",
|
|
104
106
|
"@eslint/js": "~9.35.0",
|
|
@@ -108,23 +110,21 @@
|
|
|
108
110
|
"@semantic-release/changelog": "~6.0.3",
|
|
109
111
|
"@semantic-release/exec": "~7.1.0",
|
|
110
112
|
"@semantic-release/git": "~10.0.1",
|
|
111
|
-
"@storybook/addon-a11y": "~9.1.
|
|
113
|
+
"@storybook/addon-a11y": "~9.1.6",
|
|
112
114
|
"@storybook/addon-essentials": "~8.6.14",
|
|
113
115
|
"@storybook/addon-events": "~6.2.9",
|
|
114
116
|
"@storybook/addon-interactions": "~8.6.14",
|
|
115
|
-
"@storybook/addon-links": "~9.1.
|
|
117
|
+
"@storybook/addon-links": "~9.1.6",
|
|
116
118
|
"@storybook/addon-storysource": "~8.6.14",
|
|
117
119
|
"@storybook/blocks": "~8.6.14",
|
|
118
|
-
"@storybook/builder-vite": "~9.1.
|
|
119
|
-
"@storybook/builder-webpack5": "~9.1.
|
|
120
|
-
"@storybook/
|
|
120
|
+
"@storybook/builder-vite": "~9.1.6",
|
|
121
|
+
"@storybook/builder-webpack5": "~9.1.6",
|
|
122
|
+
"@storybook/test": "~8.6.14",
|
|
121
123
|
"@storybook/manager-webpack5": "~6.5.16",
|
|
122
|
-
"@storybook/react": "~9.1.
|
|
123
|
-
"@storybook/react-vite": "~9.1.
|
|
124
|
-
"@storybook/react-webpack5": "~9.1.
|
|
125
|
-
"@storybook/testing-library": "~0.2.2",
|
|
124
|
+
"@storybook/react": "~9.1.6",
|
|
125
|
+
"@storybook/react-vite": "~9.1.6",
|
|
126
|
+
"@storybook/react-webpack5": "~9.1.6",
|
|
126
127
|
"@storybook/theming": "~8.6.14",
|
|
127
|
-
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
128
128
|
"@stylistic/eslint-plugin": "~5.3.1",
|
|
129
129
|
"@svgr/webpack": "~8.1.0",
|
|
130
130
|
"@swc/cli": "~0.7.8",
|
|
@@ -140,25 +140,27 @@
|
|
|
140
140
|
"@types/cors": "~2.8.19",
|
|
141
141
|
"@types/dotenv-webpack": "~7.0.8",
|
|
142
142
|
"@types/duplicate-package-checker-webpack-plugin": "~2.1.5",
|
|
143
|
+
"@types/express": "~5.0.3",
|
|
143
144
|
"@types/express-serve-static-core": "~5.0.7",
|
|
144
|
-
"@types/helmet": "~4.0.0",
|
|
145
145
|
"@types/ip": "~1.1.3",
|
|
146
146
|
"@types/jest": "~30.0.0",
|
|
147
147
|
"@types/jest-axe": "~3.5.9",
|
|
148
148
|
"@types/lodash": "~4.17.20",
|
|
149
|
+
"@types/minimist": "~1.2.5",
|
|
149
150
|
"@types/moment-locales-webpack-plugin": "~1.2.6",
|
|
150
|
-
"@types/node": "~24.
|
|
151
|
+
"@types/node": "~24.5.0",
|
|
151
152
|
"@types/normalize-path": "~3.0.2",
|
|
152
|
-
"@types/react": "~19.1.
|
|
153
|
-
"@types/rimraf": "~4.0.5",
|
|
153
|
+
"@types/react": "~19.1.13",
|
|
154
154
|
"@types/speed-measure-webpack-plugin": "~1.3.6",
|
|
155
155
|
"@types/supertest": "~6.0.3",
|
|
156
156
|
"@types/uuid": "~10.0.0",
|
|
157
157
|
"@types/webpack-bundle-analyzer": "~4.7.0",
|
|
158
|
-
"@
|
|
159
|
-
"@
|
|
160
|
-
"@
|
|
161
|
-
"@
|
|
158
|
+
"@types/ws": "~8.18.1",
|
|
159
|
+
"@types/yargs": "~17.0.33",
|
|
160
|
+
"@typescript-eslint/eslint-plugin": "~8.44.0",
|
|
161
|
+
"@typescript-eslint/parser": "~8.44.0",
|
|
162
|
+
"@vitejs/plugin-react": "~5.0.2",
|
|
163
|
+
"@vitest/coverage-v8": "~3.2.4",
|
|
162
164
|
"acorn": "~8.15.0",
|
|
163
165
|
"autoprefixer": "~10.4.21",
|
|
164
166
|
"axe-core": "~4.10.3",
|
|
@@ -173,15 +175,16 @@
|
|
|
173
175
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
174
176
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
175
177
|
"body-parser": "~2.2.0",
|
|
176
|
-
"browserslist": "~4.
|
|
178
|
+
"browserslist": "~4.26.2",
|
|
177
179
|
"browserslist-to-esbuild": "~2.1.1",
|
|
178
180
|
"chalk": "~5.6.2",
|
|
181
|
+
"cheerio": "~1.1.2",
|
|
179
182
|
"circular-dependency-plugin": "~5.2.2",
|
|
180
183
|
"compression": "~1.8.1",
|
|
181
184
|
"compression-webpack-plugin": "~11.1.0",
|
|
182
185
|
"copy-webpack-plugin": "~13.0.1",
|
|
183
186
|
"cors": "~2.8.5",
|
|
184
|
-
"cross-env": "~
|
|
187
|
+
"cross-env": "~10.0.0",
|
|
185
188
|
"css-loader": "~7.1.2",
|
|
186
189
|
"css-minimizer-webpack-plugin": "~7.0.2",
|
|
187
190
|
"depcheck": "~1.4.7",
|
|
@@ -200,26 +203,27 @@
|
|
|
200
203
|
"eslint-plugin-import": "~2.32.0",
|
|
201
204
|
"eslint-plugin-import-x": "~4.16.1",
|
|
202
205
|
"eslint-plugin-jest": "~29.0.1",
|
|
203
|
-
"eslint-plugin-jsdoc": "~
|
|
206
|
+
"eslint-plugin-jsdoc": "~58.1.0",
|
|
204
207
|
"eslint-plugin-jsx-a11y": "~6.10.2",
|
|
205
208
|
"eslint-plugin-mdx": "~3.6.2",
|
|
206
209
|
"eslint-plugin-prettier": "~5.5.4",
|
|
207
210
|
"eslint-plugin-react": "~7.37.5",
|
|
208
211
|
"eslint-plugin-react-hooks": "~5.2.0",
|
|
209
212
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
210
|
-
"eslint-plugin-storybook": "~
|
|
211
|
-
"eslint-plugin-testing-library": "~7.
|
|
213
|
+
"eslint-plugin-storybook": "~9.1.6",
|
|
214
|
+
"eslint-plugin-testing-library": "~7.8.0",
|
|
212
215
|
"eslint-plugin-wdio": "~9.16.2",
|
|
213
216
|
"execa": "~9.6.0",
|
|
214
|
-
"express": "~
|
|
215
|
-
"express-static-gzip": "~
|
|
217
|
+
"express": "~5.1.0",
|
|
218
|
+
"express-static-gzip": "~3.0.0",
|
|
216
219
|
"fast-glob": "~3.3.3",
|
|
217
220
|
"favicons": "~7.2.0",
|
|
218
221
|
"favicons-webpack-plugin": "~6.0.1",
|
|
219
|
-
"find-up": "~
|
|
222
|
+
"find-up": "~8.0.0",
|
|
220
223
|
"find-up-cli": "~6.0.0",
|
|
221
224
|
"globals": "~16.4.0",
|
|
222
225
|
"happy-dom": "~18.0.1",
|
|
226
|
+
"helmet": "~8.1.0",
|
|
223
227
|
"helmet-csp": "~4.0.0",
|
|
224
228
|
"html-loader": "~5.1.0",
|
|
225
229
|
"html-webpack-plugin": "~5.6.4",
|
|
@@ -228,16 +232,17 @@
|
|
|
228
232
|
"husky-init": "~8.0.0",
|
|
229
233
|
"imports-loader": "~5.0.0",
|
|
230
234
|
"ip": "~2.0.1",
|
|
231
|
-
"jest": "~
|
|
232
|
-
"jest-axe": "~
|
|
233
|
-
"jest-environment-jsdom": "~
|
|
235
|
+
"jest": "~30.1.3",
|
|
236
|
+
"jest-axe": "~10.0.0",
|
|
237
|
+
"jest-environment-jsdom": "~30.1.2",
|
|
234
238
|
"jest-sonar-reporter": "~2.0.0",
|
|
235
239
|
"jest-styled-components": "~7.2.0",
|
|
236
|
-
"jest-watch-typeahead": "~
|
|
240
|
+
"jest-watch-typeahead": "~3.0.1",
|
|
237
241
|
"jscodeshift": "~17.3.0",
|
|
238
242
|
"jsdoc": "~4.0.4",
|
|
239
243
|
"lerna": "~8.2.4",
|
|
240
|
-
"
|
|
244
|
+
"lodash": "~4.17.21",
|
|
245
|
+
"lint-staged": "~16.1.6",
|
|
241
246
|
"mini-css-extract-plugin": "~2.9.4",
|
|
242
247
|
"minimist": "~1.2.8",
|
|
243
248
|
"moment": "~2.30.1",
|
|
@@ -249,7 +254,7 @@
|
|
|
249
254
|
"normalize-path": "~3.0.0",
|
|
250
255
|
"npm-check-updates": "18.1.1",
|
|
251
256
|
"npm-run-all": "~4.1.5",
|
|
252
|
-
"nx": "~
|
|
257
|
+
"nx": "~21.5.2",
|
|
253
258
|
"pino": "~9.9.5",
|
|
254
259
|
"pino-http": "~10.5.0",
|
|
255
260
|
"pino-pretty": "~13.1.1",
|
|
@@ -263,11 +268,11 @@
|
|
|
263
268
|
"postcss-styled-syntax": "0.7.1",
|
|
264
269
|
"postcss-syntax": "~0.36.2",
|
|
265
270
|
"prettier": "~3.6.2",
|
|
266
|
-
"prisma": "~6.16.
|
|
271
|
+
"prisma": "~6.16.2",
|
|
267
272
|
"pug": "~3.0.3",
|
|
268
273
|
"pug-loader": "~2.4.0",
|
|
269
274
|
"raf": "~3.4.1",
|
|
270
|
-
"react-docgen": "~
|
|
275
|
+
"react-docgen": "~8.0.1",
|
|
271
276
|
"react-refresh": "~0.17.0",
|
|
272
277
|
"react-test-renderer": "~18.3.1",
|
|
273
278
|
"resize-observer-polyfill": "~1.5.1",
|
|
@@ -276,7 +281,7 @@
|
|
|
276
281
|
"semantic-release": "~24.2.8",
|
|
277
282
|
"slackify-markdown": "~4.5.0",
|
|
278
283
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
279
|
-
"storybook": "~
|
|
284
|
+
"storybook": "~9.1.6",
|
|
280
285
|
"storybook-addon-turbo-build": "~2.0.1",
|
|
281
286
|
"storybook-react-router": "~1.0.8",
|
|
282
287
|
"style-loader": "~4.0.0",
|
|
@@ -290,13 +295,13 @@
|
|
|
290
295
|
"tsc-alias": "~1.8.16",
|
|
291
296
|
"tsconfig-paths-webpack-plugin": "~4.2.0",
|
|
292
297
|
"tsx": "~4.20.5",
|
|
293
|
-
"typedoc": "~0.28.
|
|
298
|
+
"typedoc": "~0.28.13",
|
|
294
299
|
"typescript": "~5.9.2",
|
|
295
|
-
"typescript-eslint": "~8.
|
|
300
|
+
"typescript-eslint": "~8.44.0",
|
|
296
301
|
"undici": "~7.16.0",
|
|
297
302
|
"update-notifier": "~7.3.1",
|
|
298
303
|
"url-loader": "~4.1.1",
|
|
299
|
-
"uuid": "~
|
|
304
|
+
"uuid": "~13.0.0",
|
|
300
305
|
"vite": "~7.1.5",
|
|
301
306
|
"vite-tsconfig-paths": "~5.1.4",
|
|
302
307
|
"vitest": "~3.2.4",
|
|
@@ -309,7 +314,7 @@
|
|
|
309
314
|
"whatwg-fetch": "~3.6.20",
|
|
310
315
|
"workbox-webpack-plugin": "~7.3.0",
|
|
311
316
|
"ws": "~8.18.3",
|
|
312
|
-
"yargs": "~
|
|
317
|
+
"yargs": "~18.0.0"
|
|
313
318
|
},
|
|
314
319
|
"devDependencies": {
|
|
315
320
|
"@elliemae/pui-doc-gen": "~3.6.0",
|
|
@@ -322,7 +327,8 @@
|
|
|
322
327
|
},
|
|
323
328
|
"pnpm": {
|
|
324
329
|
"overrides": {
|
|
325
|
-
"@types/express-serve-static-core": "~5.0.7"
|
|
330
|
+
"@types/express-serve-static-core": "~5.0.7",
|
|
331
|
+
"eslint": "~9.35.0"
|
|
326
332
|
}
|
|
327
333
|
},
|
|
328
334
|
"type": "module"
|