@elliemae/pui-cli 8.13.1 → 8.14.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/dist/cjs/server/csp.js +1 -1
- package/dist/cjs/transpile/esbuild.js +1 -1
- package/dist/cjs/update-notifier.js +1 -1
- package/dist/cjs/webpack/helpers.js +1 -1
- package/dist/esm/server/csp.js +1 -1
- package/dist/esm/transpile/esbuild.js +1 -1
- package/dist/esm/update-notifier.js +1 -1
- package/dist/esm/webpack/helpers.js +1 -1
- package/dist/types/testing/vitest.config.d.ts +1 -1
- package/dist/types/webpack/helpers.d.ts +1 -1
- package/package.json +50 -50
package/dist/cjs/server/csp.js
CHANGED
|
@@ -34,9 +34,9 @@ __export(csp_exports, {
|
|
|
34
34
|
module.exports = __toCommonJS(csp_exports);
|
|
35
35
|
var import_node_fs = __toESM(require("node:fs"), 1);
|
|
36
36
|
var import_node_path = __toESM(require("node:path"), 1);
|
|
37
|
+
var import_crypto = __toESM(require("crypto"), 1);
|
|
37
38
|
var import_express = __toESM(require("express"), 1);
|
|
38
39
|
var import_helmet_csp = __toESM(require("helmet-csp"), 1);
|
|
39
|
-
var import_crypto = __toESM(require("crypto"), 1);
|
|
40
40
|
const CSP_REPORT_URI = "/diagnostics/v1/csp";
|
|
41
41
|
const sources = [
|
|
42
42
|
"'self'",
|
|
@@ -34,9 +34,9 @@ __export(esbuild_exports, {
|
|
|
34
34
|
module.exports = __toCommonJS(esbuild_exports);
|
|
35
35
|
var import_node_path = __toESM(require("node:path"), 1);
|
|
36
36
|
var import_node_url = require("node:url");
|
|
37
|
+
var import_promises = require("node:fs/promises");
|
|
37
38
|
var import_fast_glob = __toESM(require("fast-glob"), 1);
|
|
38
39
|
var import_esbuild = require("esbuild");
|
|
39
|
-
var import_promises = require("node:fs/promises");
|
|
40
40
|
var import_browserslist_to_esbuild = __toESM(require("browserslist-to-esbuild"), 1);
|
|
41
41
|
const import_meta = {};
|
|
42
42
|
const __dirname = import_node_path.default.dirname((0, import_node_url.fileURLToPath)(import_meta.url));
|
|
@@ -31,9 +31,9 @@ __export(update_notifier_exports, {
|
|
|
31
31
|
notifyUpdates: () => notifyUpdates
|
|
32
32
|
});
|
|
33
33
|
module.exports = __toCommonJS(update_notifier_exports);
|
|
34
|
-
var import_update_notifier = __toESM(require("update-notifier"), 1);
|
|
35
34
|
var import_node_path = __toESM(require("node:path"), 1);
|
|
36
35
|
var import_promises = __toESM(require("node:fs/promises"), 1);
|
|
36
|
+
var import_update_notifier = __toESM(require("update-notifier"), 1);
|
|
37
37
|
const notifyUpdates = async () => {
|
|
38
38
|
const pkgFile = await import_promises.default.readFile(import_node_path.default.join(process.cwd(), "./package.json"));
|
|
39
39
|
const pkg = JSON.parse(pkgFile);
|
|
@@ -48,9 +48,9 @@ __export(helpers_exports, {
|
|
|
48
48
|
module.exports = __toCommonJS(helpers_exports);
|
|
49
49
|
var import_node_path = __toESM(require("node:path"), 1);
|
|
50
50
|
var import_node_fs = __toESM(require("node:fs"), 1);
|
|
51
|
+
var import_zlib = __toESM(require("zlib"), 1);
|
|
51
52
|
var import_lodash = __toESM(require("lodash"), 1);
|
|
52
53
|
var import_compression_webpack_plugin = __toESM(require("compression-webpack-plugin"), 1);
|
|
53
|
-
var import_zlib = __toESM(require("zlib"), 1);
|
|
54
54
|
var import_utils = require("../monorepo/utils.js");
|
|
55
55
|
var import_utils2 = require("../utils.js");
|
|
56
56
|
let pathSep = import_node_path.default.sep;
|
package/dist/esm/server/csp.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
2
|
import path from "node:path";
|
|
3
|
+
import crypto from "crypto";
|
|
3
4
|
import express from "express";
|
|
4
5
|
import cspPolicy from "helmet-csp";
|
|
5
|
-
import crypto from "crypto";
|
|
6
6
|
const CSP_REPORT_URI = "/diagnostics/v1/csp";
|
|
7
7
|
const sources = [
|
|
8
8
|
"'self'",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
import { fileURLToPath } from "node:url";
|
|
3
|
+
import { writeFile, copyFile, readFile, mkdir } from "node:fs/promises";
|
|
3
4
|
import fg from "fast-glob";
|
|
4
5
|
import { build } from "esbuild";
|
|
5
|
-
import { writeFile, copyFile, readFile, mkdir } from "node:fs/promises";
|
|
6
6
|
import browserslistToEsbuild from "browserslist-to-esbuild";
|
|
7
7
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
8
8
|
const TARGETS = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import updateNotifier from "update-notifier";
|
|
2
1
|
import path from "node:path";
|
|
3
2
|
import fs from "node:fs/promises";
|
|
3
|
+
import updateNotifier from "update-notifier";
|
|
4
4
|
const notifyUpdates = async () => {
|
|
5
5
|
const pkgFile = await fs.readFile(path.join(process.cwd(), "./package.json"));
|
|
6
6
|
const pkg = JSON.parse(pkgFile);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
import fs from "node:fs";
|
|
3
|
+
import zlib from "zlib";
|
|
3
4
|
import _ from "lodash";
|
|
4
5
|
import CompressionPlugin from "compression-webpack-plugin";
|
|
5
|
-
import zlib from "zlib";
|
|
6
6
|
import { findMonoRepoRoot } from "../monorepo/utils.js";
|
|
7
7
|
import { basePath, getAppConfig } from "../utils.js";
|
|
8
8
|
let pathSep = path.sep;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const vitestConfig: import("
|
|
1
|
+
export declare const vitestConfig: import("vite").UserConfig;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import zlib from 'zlib';
|
|
2
3
|
import CompressionPlugin from 'compression-webpack-plugin';
|
|
3
4
|
import { ObjectPattern } from 'copy-webpack-plugin';
|
|
4
|
-
import zlib from 'zlib';
|
|
5
5
|
export declare const LATEST_VERSION = "latest";
|
|
6
6
|
export declare const excludeNodeModulesExcept: (modules: string[]) => (modulePath: string) => boolean;
|
|
7
7
|
export declare const getLibraryName: () => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.14.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@axe-core/react": "~4.7.3",
|
|
79
|
-
"@babel/cli": "~7.22.
|
|
80
|
-
"@babel/core": "~7.22.
|
|
81
|
-
"@babel/eslint-parser": "~7.22.
|
|
79
|
+
"@babel/cli": "~7.22.9",
|
|
80
|
+
"@babel/core": "~7.22.9",
|
|
81
|
+
"@babel/eslint-parser": "~7.22.9",
|
|
82
82
|
"@babel/node": "~7.22.6",
|
|
83
83
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
84
84
|
"@babel/plugin-proposal-export-default-from": "~7.22.5",
|
|
@@ -88,18 +88,18 @@
|
|
|
88
88
|
"@babel/plugin-transform-react-constant-elements": "~7.22.5",
|
|
89
89
|
"@babel/plugin-transform-react-inline-elements": "~7.22.5",
|
|
90
90
|
"@babel/plugin-transform-react-jsx-source": "~7.22.5",
|
|
91
|
-
"@babel/plugin-transform-runtime": "~7.22.
|
|
92
|
-
"@babel/preset-env": "~7.22.
|
|
91
|
+
"@babel/plugin-transform-runtime": "~7.22.9",
|
|
92
|
+
"@babel/preset-env": "~7.22.9",
|
|
93
93
|
"@babel/preset-react": "~7.22.5",
|
|
94
94
|
"@babel/preset-typescript": "~7.22.5",
|
|
95
95
|
"@babel/runtime": "~7.22.6",
|
|
96
|
-
"@commitlint/cli": "~17.6.
|
|
97
|
-
"@commitlint/config-conventional": "~17.6.
|
|
96
|
+
"@commitlint/cli": "~17.6.7",
|
|
97
|
+
"@commitlint/config-conventional": "~17.6.7",
|
|
98
98
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
|
|
99
99
|
"@faker-js/faker": "7.6.0",
|
|
100
|
-
"@nrwl/cli": "15.9.
|
|
101
|
-
"@nrwl/tao": "16.
|
|
102
|
-
"@nrwl/workspace": "16.
|
|
100
|
+
"@nrwl/cli": "15.9.4",
|
|
101
|
+
"@nrwl/tao": "16.6.0",
|
|
102
|
+
"@nrwl/workspace": "16.6.0",
|
|
103
103
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
|
|
104
104
|
"@semantic-release/changelog": "~6.0.3",
|
|
105
105
|
"@semantic-release/exec": "~6.0.3",
|
|
@@ -118,9 +118,9 @@
|
|
|
118
118
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
119
119
|
"@svgr/webpack": "~7.0.0",
|
|
120
120
|
"@swc/cli": "~0.1.62",
|
|
121
|
-
"@swc/core": "~1.3.
|
|
122
|
-
"@swc/jest": "~0.2.
|
|
123
|
-
"@testing-library/jest-dom": "~5.
|
|
121
|
+
"@swc/core": "~1.3.73",
|
|
122
|
+
"@swc/jest": "~0.2.27",
|
|
123
|
+
"@testing-library/jest-dom": "~5.17.0",
|
|
124
124
|
"@testing-library/react": "~14.0.0",
|
|
125
125
|
"@testing-library/react-hooks": "~8.0.1",
|
|
126
126
|
"@testing-library/user-event": "~14.4.3",
|
|
@@ -129,21 +129,21 @@
|
|
|
129
129
|
"@types/cors": "~2.8.13",
|
|
130
130
|
"@types/duplicate-package-checker-webpack-plugin": "~2.1.2",
|
|
131
131
|
"@types/ip": "~1.1.0",
|
|
132
|
-
"@types/jest": "~29.5.
|
|
132
|
+
"@types/jest": "~29.5.3",
|
|
133
133
|
"@types/jest-axe": "~3.5.5",
|
|
134
134
|
"@types/moment-locales-webpack-plugin": "~1.2.3",
|
|
135
|
-
"@types/node": "~18.
|
|
135
|
+
"@types/node": "~18.17.1",
|
|
136
136
|
"@types/normalize-path": "~3.0.0",
|
|
137
137
|
"@types/postcss-preset-env": "~7.7.0",
|
|
138
138
|
"@types/rimraf": "~3.0.2",
|
|
139
139
|
"@types/speed-measure-webpack-plugin": "~1.3.4",
|
|
140
140
|
"@types/supertest": "~2.0.12",
|
|
141
|
-
"@types/testing-library__jest-dom": "~5.14.
|
|
141
|
+
"@types/testing-library__jest-dom": "~5.14.9",
|
|
142
142
|
"@types/uuid": "~9.0.2",
|
|
143
143
|
"@types/webpack-bundle-analyzer": "~4.6.0",
|
|
144
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
145
|
-
"@typescript-eslint/parser": "~5.
|
|
146
|
-
"@vitejs/plugin-react": "~4.0.
|
|
144
|
+
"@typescript-eslint/eslint-plugin": "~5.62.0",
|
|
145
|
+
"@typescript-eslint/parser": "~5.62.0",
|
|
146
|
+
"@vitejs/plugin-react": "~4.0.4",
|
|
147
147
|
"@vitest/coverage-c8": "~0.33.0",
|
|
148
148
|
"autoprefixer": "~10.4.14",
|
|
149
149
|
"axe-core": "~4.7.2",
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
159
159
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
160
160
|
"body-parser": "~1.20.2",
|
|
161
|
-
"browserslist": "~4.21.
|
|
161
|
+
"browserslist": "~4.21.10",
|
|
162
162
|
"browserslist-to-esbuild": "~1.2.0",
|
|
163
163
|
"chalk": "~5.3.0",
|
|
164
164
|
"circular-dependency-plugin": "~5.2.2",
|
|
@@ -175,41 +175,41 @@
|
|
|
175
175
|
"dotenv-webpack": "~8.0.1",
|
|
176
176
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
177
177
|
"enhanced-resolve": "5.15.0",
|
|
178
|
-
"esbuild": "~0.18.
|
|
179
|
-
"esbuild-loader": "~3.0
|
|
178
|
+
"esbuild": "~0.18.17",
|
|
179
|
+
"esbuild-loader": "~3.1.0",
|
|
180
180
|
"esbuild-plugin-svgr": "~1.1.0",
|
|
181
|
-
"eslint": "~8.
|
|
181
|
+
"eslint": "~8.46.0",
|
|
182
182
|
"eslint-config-airbnb": "~19.0.4",
|
|
183
183
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
184
|
-
"eslint-config-airbnb-typescript": "~17.
|
|
185
|
-
"eslint-config-prettier": "~8.
|
|
184
|
+
"eslint-config-airbnb-typescript": "~17.1.0",
|
|
185
|
+
"eslint-config-prettier": "~8.9.0",
|
|
186
186
|
"eslint-config-react-app": "~7.0.1",
|
|
187
187
|
"eslint-import-resolver-babel-module": "~5.3.2",
|
|
188
188
|
"eslint-import-resolver-typescript": "~3.5.5",
|
|
189
189
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
190
190
|
"eslint-plugin-compat": "~4.1.4",
|
|
191
191
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
192
|
-
"eslint-plugin-import": "~2.
|
|
193
|
-
"eslint-plugin-jest": "~27.2.
|
|
194
|
-
"eslint-plugin-jsdoc": "~43.
|
|
192
|
+
"eslint-plugin-import": "~2.28.0",
|
|
193
|
+
"eslint-plugin-jest": "~27.2.3",
|
|
194
|
+
"eslint-plugin-jsdoc": "~43.2.0",
|
|
195
195
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
196
196
|
"eslint-plugin-mdx": "~2.1.0",
|
|
197
197
|
"eslint-plugin-prettier": "~4.2.1",
|
|
198
|
-
"eslint-plugin-react": "~7.
|
|
198
|
+
"eslint-plugin-react": "~7.33.1",
|
|
199
199
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
200
200
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
201
|
-
"eslint-plugin-storybook": "~0.6.
|
|
201
|
+
"eslint-plugin-storybook": "~0.6.13",
|
|
202
202
|
"eslint-plugin-testing-library": "~5.11.0",
|
|
203
203
|
"eslint-plugin-wdio": "~8.8.7",
|
|
204
|
-
"execa": "~7.
|
|
204
|
+
"execa": "~7.2.0",
|
|
205
205
|
"express": "~4.18.2",
|
|
206
206
|
"express-static-gzip": "~2.1.7",
|
|
207
|
-
"fast-glob": "~3.3.
|
|
208
|
-
"favicons": "~7.1.
|
|
207
|
+
"fast-glob": "~3.3.1",
|
|
208
|
+
"favicons": "~7.1.4",
|
|
209
209
|
"favicons-webpack-plugin": "~6.0.0",
|
|
210
210
|
"find-up": "~6.3.0",
|
|
211
211
|
"find-up-cli": "~5.0.0",
|
|
212
|
-
"happy-dom": "~9.
|
|
212
|
+
"happy-dom": "~9.20.3",
|
|
213
213
|
"helmet-csp": "~3.4.0",
|
|
214
214
|
"html-loader": "~4.2.0",
|
|
215
215
|
"html-webpack-plugin": "~5.5.3",
|
|
@@ -219,8 +219,8 @@
|
|
|
219
219
|
"imports-loader": "~4.0.1",
|
|
220
220
|
"ip": "~1.1.8",
|
|
221
221
|
"jest-axe": "~7.0.1",
|
|
222
|
-
"jest-cli": "~29.6.
|
|
223
|
-
"jest-environment-jsdom": "~29.6.
|
|
222
|
+
"jest-cli": "~29.6.2",
|
|
223
|
+
"jest-environment-jsdom": "~29.6.2",
|
|
224
224
|
"jest-sonar-reporter": "~2.0.0",
|
|
225
225
|
"jest-styled-components": "~7.1.1",
|
|
226
226
|
"jest-watch-typeahead": "~2.2.2",
|
|
@@ -232,23 +232,23 @@
|
|
|
232
232
|
"minimist": "~1.2.8",
|
|
233
233
|
"moment": "~2.29.4",
|
|
234
234
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
235
|
-
"msw": "~1.2.
|
|
235
|
+
"msw": "~1.2.3",
|
|
236
236
|
"node-gyp": "~9.4.0",
|
|
237
237
|
"node-plop": "~0.31.1",
|
|
238
238
|
"nodemon": "~2.0.22",
|
|
239
239
|
"normalize-path": "~3.0.0",
|
|
240
|
-
"npm-check-updates": "16.10.
|
|
240
|
+
"npm-check-updates": "16.10.17",
|
|
241
241
|
"npm-run-all": "~4.1.5",
|
|
242
|
-
"pino": "~8.14.
|
|
242
|
+
"pino": "~8.14.2",
|
|
243
243
|
"pino-http": "~8.3.3",
|
|
244
|
-
"pino-pretty": "~10.0
|
|
244
|
+
"pino-pretty": "~10.2.0",
|
|
245
245
|
"plop": "~3.1.2",
|
|
246
|
-
"postcss": "~8.4.
|
|
246
|
+
"postcss": "~8.4.27",
|
|
247
247
|
"postcss-html": "~1.5.0",
|
|
248
248
|
"postcss-jsx": "~0.36.4",
|
|
249
249
|
"postcss-loader": "~7.3.3",
|
|
250
250
|
"postcss-markdown": "~1.2.0",
|
|
251
|
-
"postcss-preset-env": "~8.
|
|
251
|
+
"postcss-preset-env": "~8.5.1",
|
|
252
252
|
"postcss-syntax": "~0.36.2",
|
|
253
253
|
"prettier": "~2.8.8",
|
|
254
254
|
"prisma": "~4.16.2",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"storybook-addon-turbo-build": "~1.1.0",
|
|
268
268
|
"storybook-react-router": "~1.0.8",
|
|
269
269
|
"style-loader": "~3.3.3",
|
|
270
|
-
"stylelint": "~15.10.
|
|
270
|
+
"stylelint": "~15.10.2",
|
|
271
271
|
"stylelint-config-recommended": "~12.0.0",
|
|
272
272
|
"stylelint-config-styled-components": "~0.1.1",
|
|
273
273
|
"supertest": "~6.3.3",
|
|
@@ -279,21 +279,21 @@
|
|
|
279
279
|
"update-notifier": "~6.0.2",
|
|
280
280
|
"url-loader": "~4.1.1",
|
|
281
281
|
"uuid": "~9.0.0",
|
|
282
|
-
"vite": "~4.4.
|
|
282
|
+
"vite": "~4.4.8",
|
|
283
283
|
"vite-tsconfig-paths": "~4.2.0",
|
|
284
|
-
"vitest": "~0.
|
|
285
|
-
"webpack": "~5.88.
|
|
284
|
+
"vitest": "~0.34.1",
|
|
285
|
+
"webpack": "~5.88.2",
|
|
286
286
|
"webpack-bundle-analyzer": "~4.9.0",
|
|
287
287
|
"webpack-cli": "~5.1.4",
|
|
288
288
|
"webpack-dev-server": "~4.15.1",
|
|
289
289
|
"webpack-manifest-plugin": "~5.0.0",
|
|
290
290
|
"webpack-merge": "~5.9.0",
|
|
291
|
-
"whatwg-fetch": "~3.6.
|
|
292
|
-
"workbox-webpack-plugin": "~6.
|
|
291
|
+
"whatwg-fetch": "~3.6.17",
|
|
292
|
+
"workbox-webpack-plugin": "~6.6.0",
|
|
293
293
|
"yargs": "~17.7.2"
|
|
294
294
|
},
|
|
295
295
|
"devDependencies": {
|
|
296
|
-
"@elliemae/pui-doc-gen": "~1.
|
|
296
|
+
"@elliemae/pui-doc-gen": "~1.7.1",
|
|
297
297
|
"react": "~18.2.0",
|
|
298
298
|
"react-dom": "~18.2.0",
|
|
299
299
|
"redux": "~4.2.1",
|