@elliemae/pui-cli 8.7.0 → 8.9.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.
@@ -76,7 +76,7 @@ const getLibraryName = () => {
76
76
  const packageJson = JSON.parse(
77
77
  import_node_fs.default.readFileSync(import_node_path.default.join(process.cwd(), "package.json")).toString()
78
78
  );
79
- const libraryName = packageJson ? packageJson.name : process.env.LIBRARY_NAME || "mylibrary";
79
+ const libraryName = process.env.LIBRARY_NAME ?? packageJson?.name;
80
80
  const modifiedLibName = `emui-${libraryName.replace("@elliemae/", "").replace("pui-", "")}`;
81
81
  return import_lodash.default.camelCase(modifiedLibName);
82
82
  };
@@ -104,8 +104,6 @@ const getAlias = () => {
104
104
  "immer",
105
105
  "react-dates",
106
106
  "react-transition-group",
107
- "react-select",
108
- "react-spring",
109
107
  "@elliemae/pui-cli",
110
108
  "@elliemae/pui-app-sdk$",
111
109
  "@elliemae/pui-theme$"
@@ -28,7 +28,7 @@ const getLibraryName = () => {
28
28
  const packageJson = JSON.parse(
29
29
  fs.readFileSync(path.join(process.cwd(), "package.json")).toString()
30
30
  );
31
- const libraryName = packageJson ? packageJson.name : process.env.LIBRARY_NAME || "mylibrary";
31
+ const libraryName = process.env.LIBRARY_NAME ?? packageJson?.name;
32
32
  const modifiedLibName = `emui-${libraryName.replace("@elliemae/", "").replace("pui-", "")}`;
33
33
  return _.camelCase(modifiedLibName);
34
34
  };
@@ -56,8 +56,6 @@ const getAlias = () => {
56
56
  "immer",
57
57
  "react-dates",
58
58
  "react-transition-group",
59
- "react-select",
60
- "react-spring",
61
59
  "@elliemae/pui-cli",
62
60
  "@elliemae/pui-app-sdk$",
63
61
  "@elliemae/pui-theme$"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "8.7.0",
3
+ "version": "8.9.0",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -75,31 +75,31 @@
75
75
  "sonar56x": true
76
76
  },
77
77
  "dependencies": {
78
- "@axe-core/react": "~4.6.1",
79
- "@babel/cli": "~7.21.0",
80
- "@babel/core": "~7.21.4",
81
- "@babel/eslint-parser": "~7.21.3",
78
+ "@axe-core/react": "~4.7.0",
79
+ "@babel/cli": "~7.21.5",
80
+ "@babel/core": "~7.21.8",
81
+ "@babel/eslint-parser": "~7.21.8",
82
82
  "@babel/node": "~7.20.7",
83
83
  "@babel/plugin-proposal-class-properties": "~7.18.6",
84
84
  "@babel/plugin-proposal-export-default-from": "~7.18.10",
85
85
  "@babel/plugin-syntax-dynamic-import": "~7.8.3",
86
86
  "@babel/plugin-syntax-import-assertions": "~7.20.0",
87
- "@babel/plugin-transform-modules-commonjs": "~7.21.2",
87
+ "@babel/plugin-transform-modules-commonjs": "~7.21.5",
88
88
  "@babel/plugin-transform-react-constant-elements": "~7.21.3",
89
89
  "@babel/plugin-transform-react-inline-elements": "~7.21.0",
90
90
  "@babel/plugin-transform-react-jsx-source": "~7.19.6",
91
91
  "@babel/plugin-transform-runtime": "~7.21.4",
92
- "@babel/preset-env": "~7.21.4",
92
+ "@babel/preset-env": "~7.21.5",
93
93
  "@babel/preset-react": "~7.18.6",
94
- "@babel/preset-typescript": "~7.21.4",
95
- "@babel/runtime": "~7.21.0",
94
+ "@babel/preset-typescript": "~7.21.5",
95
+ "@babel/runtime": "~7.21.5",
96
96
  "@commitlint/cli": "~17.6.1",
97
97
  "@commitlint/config-conventional": "~17.6.1",
98
98
  "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
99
99
  "@faker-js/faker": "7.6.0",
100
- "@nrwl/cli": "15.9.2",
101
- "@nrwl/tao": "15.9.2",
102
- "@nrwl/workspace": "15.9.2",
100
+ "@nrwl/cli": "15.9.3",
101
+ "@nrwl/tao": "16.0.2",
102
+ "@nrwl/workspace": "16.0.2",
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,7 +118,7 @@
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.53",
121
+ "@swc/core": "~1.3.56",
122
122
  "@swc/jest": "~0.2.26",
123
123
  "@testing-library/jest-dom": "~5.16.5",
124
124
  "@testing-library/react": "~14.0.0",
@@ -132,7 +132,7 @@
132
132
  "@types/jest": "~29.5.1",
133
133
  "@types/jest-axe": "~3.5.5",
134
134
  "@types/moment-locales-webpack-plugin": "~1.2.3",
135
- "@types/node": "~18.16.0",
135
+ "@types/node": "~18.16.3",
136
136
  "@types/normalize-path": "~3.0.0",
137
137
  "@types/postcss-preset-env": "~7.7.0",
138
138
  "@types/rimraf": "~3.0.2",
@@ -141,8 +141,8 @@
141
141
  "@types/uuid": "~9.0.1",
142
142
  "@types/testing-library__jest-dom": "~5.14.5",
143
143
  "@types/webpack-bundle-analyzer": "~4.6.0",
144
- "@typescript-eslint/eslint-plugin": "~5.59.1",
145
- "@typescript-eslint/parser": "~5.59.1",
144
+ "@typescript-eslint/eslint-plugin": "~5.59.2",
145
+ "@typescript-eslint/parser": "~5.59.2",
146
146
  "@vitejs/plugin-react": "~4.0.0",
147
147
  "@vitest/coverage-c8": "~0.30.1",
148
148
  "autoprefixer": "~10.4.14",
@@ -200,7 +200,7 @@
200
200
  "eslint-plugin-redux-saga": "~1.3.2",
201
201
  "eslint-plugin-storybook": "~0.6.11",
202
202
  "eslint-plugin-testing-library": "~5.10.3",
203
- "eslint-plugin-wdio": "~8.0.14",
203
+ "eslint-plugin-wdio": "~8.8.7",
204
204
  "execa": "~7.1.1",
205
205
  "express": "~4.18.2",
206
206
  "express-static-gzip": "~2.1.7",
@@ -209,7 +209,7 @@
209
209
  "fast-glob": "~3.2.12",
210
210
  "find-up": "~6.3.0",
211
211
  "find-up-cli": "~5.0.0",
212
- "happy-dom": "~9.9.2",
212
+ "happy-dom": "~9.10.5",
213
213
  "helmet-csp": "~3.4.0",
214
214
  "html-loader": "~4.2.0",
215
215
  "html-webpack-plugin": "~5.5.1",
@@ -227,7 +227,7 @@
227
227
  "jscodeshift": "~0.14.0",
228
228
  "jsdoc": "~4.0.2",
229
229
  "lerna": "~6.6.1",
230
- "lint-staged": "~13.2.1",
230
+ "lint-staged": "~13.2.2",
231
231
  "mini-css-extract-plugin": "~2.7.5",
232
232
  "minimist": "~1.2.8",
233
233
  "moment": "~2.29.4",
@@ -239,14 +239,14 @@
239
239
  "nodemon": "~2.0.22",
240
240
  "normalize-path": "~3.0.0",
241
241
  "npm-check-updates": "16.10.9",
242
- "pino": "~8.11.0",
242
+ "pino": "~8.12.0",
243
243
  "pino-http": "~8.3.3",
244
244
  "pino-pretty": "~10.0.0",
245
245
  "plop": "~3.1.2",
246
246
  "postcss": "~8.4.23",
247
247
  "postcss-html": "~1.5.0",
248
248
  "postcss-jsx": "~0.36.4",
249
- "postcss-loader": "~7.2.4",
249
+ "postcss-loader": "~7.3.0",
250
250
  "postcss-markdown": "~1.2.0",
251
251
  "postcss-preset-env": "~8.3.2",
252
252
  "postcss-syntax": "~0.36.2",
@@ -261,7 +261,7 @@
261
261
  "resize-observer-polyfill": "~1.5.1",
262
262
  "resolve-typescript-plugin": "~2.0.1",
263
263
  "rimraf": "~5.0.0",
264
- "semantic-release": "~21.0.1",
264
+ "semantic-release": "~21.0.2",
265
265
  "slackify-markdown": "~4.3.1",
266
266
  "speed-measure-webpack-plugin": "~1.5.0",
267
267
  "storybook-addon-turbo-build": "~1.1.0",
@@ -273,16 +273,16 @@
273
273
  "supertest": "~6.3.3",
274
274
  "swc-loader": "~0.2.3",
275
275
  "ts-node": "~10.9.1",
276
- "tsc-alias": "~1.8.5",
276
+ "tsc-alias": "~1.8.6",
277
277
  "typedoc": "~0.24.6",
278
278
  "typescript": "~5.0.4",
279
279
  "update-notifier": "~6.0.2",
280
280
  "url-loader": "~4.1.1",
281
281
  "uuid": "~9.0.0",
282
- "vite": "~4.3.1",
282
+ "vite": "~4.3.4",
283
283
  "vitest": "~0.30.1",
284
284
  "vite-tsconfig-paths": "~4.2.0",
285
- "webpack": "~5.80.0",
285
+ "webpack": "~5.81.0",
286
286
  "webpack-bundle-analyzer": "~4.8.0",
287
287
  "webpack-cli": "~5.0.2",
288
288
  "webpack-dev-server": "~4.13.3",
@@ -290,7 +290,7 @@
290
290
  "webpack-merge": "~5.8.0",
291
291
  "whatwg-fetch": "~3.6.2",
292
292
  "workbox-webpack-plugin": "~6.5.4",
293
- "yargs": "~17.7.1"
293
+ "yargs": "~17.7.2"
294
294
  },
295
295
  "devDependencies": {
296
296
  "@elliemae/pui-doc-gen": "~1.6.4",