@elliemae/pui-cli 8.7.0 → 8.8.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 =
|
|
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 =
|
|
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.
|
|
3
|
+
"version": "8.8.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -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.
|
|
121
|
+
"@swc/core": "~1.3.55",
|
|
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.
|
|
135
|
+
"@types/node": "~18.16.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",
|
|
@@ -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.
|
|
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",
|
|
@@ -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.
|
|
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",
|
|
@@ -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.
|
|
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.
|
|
282
|
+
"vite": "~4.3.3",
|
|
283
283
|
"vitest": "~0.30.1",
|
|
284
284
|
"vite-tsconfig-paths": "~4.2.0",
|
|
285
|
-
"webpack": "~5.
|
|
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",
|