@elliemae/pui-cli 7.1.0 → 7.2.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/webpack/webpack.base.babel.js +24 -0
- package/dist/cjs/webpack/webpack.lib.base.babel.js +2 -2
- package/dist/cjs/webpack/webpack.lib.prod.babel.js +1 -9
- package/dist/esm/webpack/webpack.base.babel.js +24 -0
- package/dist/esm/webpack/webpack.lib.base.babel.js +2 -2
- package/dist/esm/webpack/webpack.lib.prod.babel.js +1 -9
- package/dist/types/webpack/webpack.lib.base.babel.d.ts +3 -1
- package/dist/types/webpack/webpack.lib.dev.babel.d.ts +3 -1
- package/dist/types/webpack/webpack.lib.prod.babel.d.ts +3 -1
- package/package.json +13 -13
|
@@ -74,6 +74,12 @@ const plugins = [
|
|
|
74
74
|
toType: "dir",
|
|
75
75
|
info: { minimized: true }
|
|
76
76
|
},
|
|
77
|
+
{
|
|
78
|
+
from: "node_modules/@elliemae/pui-user-monitoring/dist/umd/*.js",
|
|
79
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
80
|
+
noErrorOnMissing: true,
|
|
81
|
+
info: { minimized: true }
|
|
82
|
+
},
|
|
77
83
|
{
|
|
78
84
|
from: "node_modules/@elliemae/pui-app-loader/dist/public/js",
|
|
79
85
|
to: "./latest/js",
|
|
@@ -81,6 +87,12 @@ const plugins = [
|
|
|
81
87
|
noErrorOnMissing: true,
|
|
82
88
|
info: { minimized: true }
|
|
83
89
|
},
|
|
90
|
+
{
|
|
91
|
+
from: "node_modules/@elliemae/pui-app-loader/dist/umd/*.js",
|
|
92
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
93
|
+
noErrorOnMissing: true,
|
|
94
|
+
info: { minimized: true }
|
|
95
|
+
},
|
|
84
96
|
{
|
|
85
97
|
from: "node_modules/@elliemae/encw-loader/dist/public/js",
|
|
86
98
|
to: "./latest/js",
|
|
@@ -88,6 +100,12 @@ const plugins = [
|
|
|
88
100
|
noErrorOnMissing: true,
|
|
89
101
|
info: { minimized: true }
|
|
90
102
|
},
|
|
103
|
+
{
|
|
104
|
+
from: "node_modules/@elliemae/encw-loader/dist/umd/*.js",
|
|
105
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
106
|
+
noErrorOnMissing: true,
|
|
107
|
+
info: { minimized: true }
|
|
108
|
+
},
|
|
91
109
|
{
|
|
92
110
|
from: "node_modules/@elliemae/pui-diagnostics/dist/public/js",
|
|
93
111
|
to: "./latest/js",
|
|
@@ -95,6 +113,12 @@ const plugins = [
|
|
|
95
113
|
noErrorOnMissing: true,
|
|
96
114
|
info: { minimized: true }
|
|
97
115
|
},
|
|
116
|
+
{
|
|
117
|
+
from: "node_modules/@elliemae/pui-diagnostics/dist/umd/*.js",
|
|
118
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
119
|
+
noErrorOnMissing: true,
|
|
120
|
+
info: { minimized: true }
|
|
121
|
+
},
|
|
98
122
|
{
|
|
99
123
|
from: "public",
|
|
100
124
|
to: "./latest",
|
|
@@ -76,10 +76,10 @@ const plugins = [
|
|
|
76
76
|
];
|
|
77
77
|
const baseConfig = (options) => ({
|
|
78
78
|
mode: options.mode,
|
|
79
|
-
entry:
|
|
79
|
+
entry: { index: import_node_path.default.join(process.cwd(), "lib/index") },
|
|
80
80
|
output: {
|
|
81
81
|
clean: true,
|
|
82
|
-
path: import_node_path.default.resolve(process.cwd(), "dist/
|
|
82
|
+
path: import_node_path.default.resolve(process.cwd(), "dist/umd"),
|
|
83
83
|
publicPath: "auto",
|
|
84
84
|
library: process.env.LIBRARY_VARIABLE_NAME || (0, import_helpers.getLibraryName)(),
|
|
85
85
|
libraryTarget: "umd",
|
|
@@ -62,11 +62,6 @@ const getHtmlWebpackPlugins = () => {
|
|
|
62
62
|
};
|
|
63
63
|
var webpack_lib_prod_babel_default = (0, import_webpack_lib_base_babel.baseConfig)({
|
|
64
64
|
mode: "production",
|
|
65
|
-
output: {
|
|
66
|
-
filename: `js/${libraryName}.[chunkhash].js`,
|
|
67
|
-
chunkFilename: `js/${libraryName}.[chunkhash].chunk.js`,
|
|
68
|
-
assetModuleFilename: "assets/[name].[hash][ext][query]"
|
|
69
|
-
},
|
|
70
65
|
optimization: {
|
|
71
66
|
moduleIds: "deterministic",
|
|
72
67
|
minimize: true,
|
|
@@ -85,10 +80,7 @@ var webpack_lib_prod_babel_default = (0, import_webpack_lib_base_babel.baseConfi
|
|
|
85
80
|
},
|
|
86
81
|
plugins: [
|
|
87
82
|
...getHtmlWebpackPlugins(),
|
|
88
|
-
new import_mini_css_extract_plugin.default({
|
|
89
|
-
filename: `css/${libraryName}.[contenthash].css`,
|
|
90
|
-
chunkFilename: `css/${libraryName}.[contenthash].chunk.css`
|
|
91
|
-
}),
|
|
83
|
+
new import_mini_css_extract_plugin.default({}),
|
|
92
84
|
...(0, import_helpers.getCompressionPlugins)(true),
|
|
93
85
|
new import_webpack_bundle_analyzer.BundleAnalyzerPlugin({
|
|
94
86
|
analyzerMode: "static",
|
|
@@ -51,6 +51,12 @@ const plugins = [
|
|
|
51
51
|
toType: "dir",
|
|
52
52
|
info: { minimized: true }
|
|
53
53
|
},
|
|
54
|
+
{
|
|
55
|
+
from: "node_modules/@elliemae/pui-user-monitoring/dist/umd/*.js",
|
|
56
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
57
|
+
noErrorOnMissing: true,
|
|
58
|
+
info: { minimized: true }
|
|
59
|
+
},
|
|
54
60
|
{
|
|
55
61
|
from: "node_modules/@elliemae/pui-app-loader/dist/public/js",
|
|
56
62
|
to: "./latest/js",
|
|
@@ -58,6 +64,12 @@ const plugins = [
|
|
|
58
64
|
noErrorOnMissing: true,
|
|
59
65
|
info: { minimized: true }
|
|
60
66
|
},
|
|
67
|
+
{
|
|
68
|
+
from: "node_modules/@elliemae/pui-app-loader/dist/umd/*.js",
|
|
69
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
70
|
+
noErrorOnMissing: true,
|
|
71
|
+
info: { minimized: true }
|
|
72
|
+
},
|
|
61
73
|
{
|
|
62
74
|
from: "node_modules/@elliemae/encw-loader/dist/public/js",
|
|
63
75
|
to: "./latest/js",
|
|
@@ -65,6 +77,12 @@ const plugins = [
|
|
|
65
77
|
noErrorOnMissing: true,
|
|
66
78
|
info: { minimized: true }
|
|
67
79
|
},
|
|
80
|
+
{
|
|
81
|
+
from: "node_modules/@elliemae/encw-loader/dist/umd/*.js",
|
|
82
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
83
|
+
noErrorOnMissing: true,
|
|
84
|
+
info: { minimized: true }
|
|
85
|
+
},
|
|
68
86
|
{
|
|
69
87
|
from: "node_modules/@elliemae/pui-diagnostics/dist/public/js",
|
|
70
88
|
to: "./latest/js",
|
|
@@ -72,6 +90,12 @@ const plugins = [
|
|
|
72
90
|
noErrorOnMissing: true,
|
|
73
91
|
info: { minimized: true }
|
|
74
92
|
},
|
|
93
|
+
{
|
|
94
|
+
from: "node_modules/@elliemae/pui-diagnostics/dist/umd/*.js",
|
|
95
|
+
to: "./latest/js/[name].[contenthash][ext]",
|
|
96
|
+
noErrorOnMissing: true,
|
|
97
|
+
info: { minimized: true }
|
|
98
|
+
},
|
|
75
99
|
{
|
|
76
100
|
from: "public",
|
|
77
101
|
to: "./latest",
|
|
@@ -53,10 +53,10 @@ const plugins = [
|
|
|
53
53
|
];
|
|
54
54
|
const baseConfig = (options) => ({
|
|
55
55
|
mode: options.mode,
|
|
56
|
-
entry:
|
|
56
|
+
entry: { index: path.join(process.cwd(), "lib/index") },
|
|
57
57
|
output: {
|
|
58
58
|
clean: true,
|
|
59
|
-
path: path.resolve(process.cwd(), "dist/
|
|
59
|
+
path: path.resolve(process.cwd(), "dist/umd"),
|
|
60
60
|
publicPath: "auto",
|
|
61
61
|
library: process.env.LIBRARY_VARIABLE_NAME || getLibraryName(),
|
|
62
62
|
libraryTarget: "umd",
|
|
@@ -33,11 +33,6 @@ const getHtmlWebpackPlugins = () => {
|
|
|
33
33
|
};
|
|
34
34
|
var webpack_lib_prod_babel_default = baseConfig({
|
|
35
35
|
mode: "production",
|
|
36
|
-
output: {
|
|
37
|
-
filename: `js/${libraryName}.[chunkhash].js`,
|
|
38
|
-
chunkFilename: `js/${libraryName}.[chunkhash].chunk.js`,
|
|
39
|
-
assetModuleFilename: "assets/[name].[hash][ext][query]"
|
|
40
|
-
},
|
|
41
36
|
optimization: {
|
|
42
37
|
moduleIds: "deterministic",
|
|
43
38
|
minimize: true,
|
|
@@ -56,10 +51,7 @@ var webpack_lib_prod_babel_default = baseConfig({
|
|
|
56
51
|
},
|
|
57
52
|
plugins: [
|
|
58
53
|
...getHtmlWebpackPlugins(),
|
|
59
|
-
new MiniCssExtractPlugin({
|
|
60
|
-
filename: `css/${libraryName}.[contenthash].css`,
|
|
61
|
-
chunkFilename: `css/${libraryName}.[contenthash].chunk.css`
|
|
62
|
-
}),
|
|
54
|
+
new MiniCssExtractPlugin({}),
|
|
63
55
|
...getCompressionPlugins(true),
|
|
64
56
|
new BundleAnalyzerPlugin({
|
|
65
57
|
analyzerMode: "static",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"@commitlint/config-conventional": "~17.0.3",
|
|
84
84
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.5.0",
|
|
85
85
|
"@faker-js/faker": "7.4.0",
|
|
86
|
-
"@nrwl/cli": "14.5.
|
|
87
|
-
"@nrwl/tao": "14.5.
|
|
88
|
-
"@nrwl/workspace": "14.5.
|
|
86
|
+
"@nrwl/cli": "14.5.8",
|
|
87
|
+
"@nrwl/tao": "14.5.8",
|
|
88
|
+
"@nrwl/workspace": "14.5.8",
|
|
89
89
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.7",
|
|
90
90
|
"@semantic-release/changelog": "~6.0.1",
|
|
91
91
|
"@semantic-release/exec": "~6.0.3",
|
|
@@ -104,14 +104,14 @@
|
|
|
104
104
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
105
105
|
"@svgr/webpack": "~6.3.1",
|
|
106
106
|
"@swc/cli": "~0.1.57",
|
|
107
|
-
"@swc/core": "~1.2.
|
|
107
|
+
"@swc/core": "~1.2.241",
|
|
108
108
|
"@swc/jest": "~0.2.22",
|
|
109
109
|
"@testing-library/jest-dom": "~5.16.5",
|
|
110
110
|
"@testing-library/react": "~13.3.0",
|
|
111
111
|
"@testing-library/react-hooks": "~8.0.1",
|
|
112
112
|
"@testing-library/user-event": "~14.4.3",
|
|
113
113
|
"@types/jest": "~28.1.7",
|
|
114
|
-
"@types/node": "~18.7.
|
|
114
|
+
"@types/node": "~18.7.8",
|
|
115
115
|
"@types/rimraf": "~3.0.2",
|
|
116
116
|
"@types/testing-library__jest-dom": "~5.14.5",
|
|
117
117
|
"@typescript-eslint/eslint-plugin": "~5.33.1",
|
|
@@ -157,12 +157,12 @@
|
|
|
157
157
|
"eslint-config-prettier": "~8.5.0",
|
|
158
158
|
"eslint-config-react-app": "~7.0.1",
|
|
159
159
|
"eslint-import-resolver-babel-module": "~5.3.1",
|
|
160
|
-
"eslint-import-resolver-typescript": "~3.4.
|
|
160
|
+
"eslint-import-resolver-typescript": "~3.4.2",
|
|
161
161
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
162
162
|
"eslint-plugin-compat": "~4.0.2",
|
|
163
163
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
164
164
|
"eslint-plugin-import": "~2.26.0",
|
|
165
|
-
"eslint-plugin-jest": "~26.8.
|
|
165
|
+
"eslint-plugin-jest": "~26.8.4",
|
|
166
166
|
"eslint-plugin-jsdoc": "~39.3.6",
|
|
167
167
|
"eslint-plugin-jsx-a11y": "~6.6.1",
|
|
168
168
|
"eslint-plugin-mdx": "~2.0.2",
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"nodemon": "~2.0.19",
|
|
212
212
|
"normalize-path": "~3.0.0",
|
|
213
213
|
"npm-check-updates": "16.0.5",
|
|
214
|
-
"pino": "~8.4.
|
|
214
|
+
"pino": "~8.4.2",
|
|
215
215
|
"pino-pretty": "~9.0.1",
|
|
216
216
|
"plop": "~3.1.1",
|
|
217
217
|
"postcss": "~8.4.16",
|
|
@@ -249,11 +249,11 @@
|
|
|
249
249
|
"update-notifier": "~6.0.2",
|
|
250
250
|
"url-loader": "~4.1.1",
|
|
251
251
|
"uuid": "~8.3.2",
|
|
252
|
-
"vite": "~3.0.
|
|
253
|
-
"vitest": "~0.22.
|
|
252
|
+
"vite": "~3.0.9",
|
|
253
|
+
"vitest": "~0.22.1",
|
|
254
254
|
"vite-tsconfig-paths": "~3.5.0",
|
|
255
255
|
"webpack": "~5.74.0",
|
|
256
|
-
"webpack-bundle-analyzer": "~4.
|
|
256
|
+
"webpack-bundle-analyzer": "~4.6.0",
|
|
257
257
|
"webpack-cli": "~4.10.0",
|
|
258
258
|
"webpack-dev-server": "~4.10.0",
|
|
259
259
|
"webpack-manifest-plugin": "~5.0.0",
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
"react": "~18.2.0",
|
|
267
267
|
"react-dom": "~18.2.0",
|
|
268
268
|
"redux": "~4.2.0",
|
|
269
|
-
"redux-saga": "~1.2.
|
|
269
|
+
"redux-saga": "~1.2.1",
|
|
270
270
|
"styled-components": "~5.3.5"
|
|
271
271
|
}
|
|
272
272
|
}
|