@elliemae/pui-cli 7.0.0-alpha.32 → 7.0.0-alpha.35
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.
|
@@ -148,7 +148,8 @@ const copyBuildAssetsToVersionedFolder = async () => {
|
|
|
148
148
|
};
|
|
149
149
|
const isPathExist = async (pathToCheck) => {
|
|
150
150
|
try {
|
|
151
|
-
|
|
151
|
+
await (0, import_promises.access)(pathToCheck, import_fs.constants.F_OK);
|
|
152
|
+
return true;
|
|
152
153
|
} catch (err) {
|
|
153
154
|
return false;
|
|
154
155
|
}
|
|
@@ -124,7 +124,8 @@ const copyBuildAssetsToVersionedFolder = async () => {
|
|
|
124
124
|
};
|
|
125
125
|
const isPathExist = async (pathToCheck) => {
|
|
126
126
|
try {
|
|
127
|
-
|
|
127
|
+
await access(pathToCheck, constants.F_OK);
|
|
128
|
+
return true;
|
|
128
129
|
} catch (err) {
|
|
129
130
|
return false;
|
|
130
131
|
}
|
|
@@ -12,5 +12,5 @@ export const logError: {
|
|
|
12
12
|
};
|
|
13
13
|
export function writeAppInfo(): Promise<void>;
|
|
14
14
|
export function copyBuildAssetsToVersionedFolder(): Promise<void>;
|
|
15
|
-
export function isPathExist(pathToCheck: any): Promise<
|
|
16
|
-
export function isApp(): Promise<
|
|
15
|
+
export function isPathExist(pathToCheck: any): Promise<boolean>;
|
|
16
|
+
export function isApp(): Promise<boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.35",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -63,59 +63,59 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@axe-core/react": "~4.4.3",
|
|
66
|
-
"@babel/cli": "~7.18.
|
|
67
|
-
"@babel/core": "~7.18.
|
|
66
|
+
"@babel/cli": "~7.18.10",
|
|
67
|
+
"@babel/core": "~7.18.10",
|
|
68
68
|
"@babel/eslint-parser": "~7.18.9",
|
|
69
|
-
"@babel/node": "~7.18.
|
|
69
|
+
"@babel/node": "~7.18.10",
|
|
70
70
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
71
|
-
"@babel/plugin-proposal-export-default-from": "~7.18.
|
|
71
|
+
"@babel/plugin-proposal-export-default-from": "~7.18.10",
|
|
72
72
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
73
73
|
"@babel/plugin-transform-modules-commonjs": "~7.18.6",
|
|
74
|
-
"@babel/plugin-transform-react-constant-elements": "~7.18.
|
|
74
|
+
"@babel/plugin-transform-react-constant-elements": "~7.18.12",
|
|
75
75
|
"@babel/plugin-transform-react-inline-elements": "~7.18.6",
|
|
76
76
|
"@babel/plugin-transform-react-jsx-source": "~7.18.6",
|
|
77
|
-
"@babel/plugin-transform-runtime": "~7.18.
|
|
78
|
-
"@babel/preset-env": "~7.18.
|
|
77
|
+
"@babel/plugin-transform-runtime": "~7.18.10",
|
|
78
|
+
"@babel/preset-env": "~7.18.10",
|
|
79
79
|
"@babel/preset-react": "~7.18.6",
|
|
80
80
|
"@babel/preset-typescript": "~7.18.6",
|
|
81
81
|
"@babel/runtime": "~7.18.9",
|
|
82
82
|
"@commitlint/cli": "~17.0.3",
|
|
83
83
|
"@commitlint/config-conventional": "~17.0.3",
|
|
84
84
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.4.2",
|
|
85
|
-
"@faker-js/faker": "7.
|
|
86
|
-
"@nrwl/cli": "14.5.
|
|
87
|
-
"@nrwl/tao": "14.5.
|
|
88
|
-
"@nrwl/workspace": "14.5.
|
|
85
|
+
"@faker-js/faker": "7.4.0",
|
|
86
|
+
"@nrwl/cli": "14.5.4",
|
|
87
|
+
"@nrwl/tao": "14.5.4",
|
|
88
|
+
"@nrwl/workspace": "14.5.4",
|
|
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",
|
|
92
92
|
"@semantic-release/git": "~10.0.1",
|
|
93
|
-
"@storybook/addon-a11y": "~6.5.
|
|
94
|
-
"@storybook/addon-essentials": "~6.5.
|
|
93
|
+
"@storybook/addon-a11y": "~6.5.10",
|
|
94
|
+
"@storybook/addon-essentials": "~6.5.10",
|
|
95
95
|
"@storybook/addon-events": "~6.2.9",
|
|
96
|
-
"@storybook/addon-interactions": "~6.5.
|
|
97
|
-
"@storybook/addon-links": "~6.5.
|
|
98
|
-
"@storybook/addon-storysource": "~6.5.
|
|
96
|
+
"@storybook/addon-interactions": "~6.5.10",
|
|
97
|
+
"@storybook/addon-links": "~6.5.10",
|
|
98
|
+
"@storybook/addon-storysource": "~6.5.10",
|
|
99
99
|
"@storybook/builder-vite": "~0.2.2",
|
|
100
|
-
"@storybook/builder-webpack5": "~6.5.
|
|
101
|
-
"@storybook/manager-webpack5": "~6.5.
|
|
102
|
-
"@storybook/react": "~6.5.
|
|
103
|
-
"@storybook/theming": "~6.5.
|
|
100
|
+
"@storybook/builder-webpack5": "~6.5.10",
|
|
101
|
+
"@storybook/manager-webpack5": "~6.5.10",
|
|
102
|
+
"@storybook/react": "~6.5.10",
|
|
103
|
+
"@storybook/theming": "~6.5.10",
|
|
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.224",
|
|
108
108
|
"@swc/jest": "~0.2.22",
|
|
109
|
-
"@testing-library/jest-dom": "~5.16.
|
|
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
|
-
"@testing-library/user-event": "~14.3
|
|
112
|
+
"@testing-library/user-event": "~14.4.3",
|
|
113
113
|
"@types/jest": "~28.1.6",
|
|
114
|
-
"@types/node": "~18.6.
|
|
114
|
+
"@types/node": "~18.6.5",
|
|
115
115
|
"@types/rimraf": "~3.0.2",
|
|
116
116
|
"@types/testing-library__jest-dom": "~5.14.5",
|
|
117
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
118
|
-
"@typescript-eslint/parser": "~5.
|
|
117
|
+
"@typescript-eslint/eslint-plugin": "~5.33.0",
|
|
118
|
+
"@typescript-eslint/parser": "~5.33.0",
|
|
119
119
|
"@vitejs/plugin-react": "~2.0.0",
|
|
120
120
|
"autoprefixer": "~10.4.8",
|
|
121
121
|
"axe-core": "~4.4.3",
|
|
@@ -147,31 +147,31 @@
|
|
|
147
147
|
"dotenv-webpack": "~8.0.0",
|
|
148
148
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
149
149
|
"enhanced-resolve": "5.10.0",
|
|
150
|
-
"esbuild": "~0.14.
|
|
150
|
+
"esbuild": "~0.14.54",
|
|
151
151
|
"esbuild-loader": "~2.19.0",
|
|
152
152
|
"esbuild-plugin-svgr": "~1.0.1",
|
|
153
|
-
"eslint": "~8.
|
|
153
|
+
"eslint": "~8.21.0",
|
|
154
154
|
"eslint-config-airbnb": "~19.0.4",
|
|
155
155
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
156
156
|
"eslint-config-airbnb-typescript": "~17.0.0",
|
|
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.
|
|
160
|
+
"eslint-import-resolver-typescript": "~3.4.0",
|
|
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.
|
|
166
|
-
"eslint-plugin-jsdoc": "~39.3.
|
|
165
|
+
"eslint-plugin-jest": "~26.8.2",
|
|
166
|
+
"eslint-plugin-jsdoc": "~39.3.6",
|
|
167
167
|
"eslint-plugin-jsx-a11y": "~6.6.1",
|
|
168
168
|
"eslint-plugin-mdx": "~2.0.2",
|
|
169
169
|
"eslint-plugin-prettier": "~4.2.1",
|
|
170
170
|
"eslint-plugin-react": "~7.30.1",
|
|
171
171
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
172
172
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
173
|
-
"eslint-plugin-storybook": "~0.6.
|
|
174
|
-
"eslint-plugin-testing-library": "~5.
|
|
173
|
+
"eslint-plugin-storybook": "~0.6.4",
|
|
174
|
+
"eslint-plugin-testing-library": "~5.6.0",
|
|
175
175
|
"eslint-plugin-wdio": "~7.20.8",
|
|
176
176
|
"execa": "~6.1.0",
|
|
177
177
|
"express": "~4.18.1",
|
|
@@ -195,11 +195,11 @@
|
|
|
195
195
|
"jest-cli": "~28.1.3",
|
|
196
196
|
"jest-environment-jsdom": "~28.1.3",
|
|
197
197
|
"jest-sonar-reporter": "~2.0.0",
|
|
198
|
-
"jest-styled-components": "~7.0
|
|
198
|
+
"jest-styled-components": "~7.1.0",
|
|
199
199
|
"jest-watch-typeahead": "~2.0.0",
|
|
200
200
|
"jscodeshift": "~0.13.1",
|
|
201
201
|
"jsdoc": "~3.6.11",
|
|
202
|
-
"lerna": "~5.
|
|
202
|
+
"lerna": "~5.4.0",
|
|
203
203
|
"lint-staged": "~13.0.3",
|
|
204
204
|
"mini-css-extract-plugin": "~2.6.1",
|
|
205
205
|
"minimist": "~1.2.6",
|
|
@@ -210,11 +210,11 @@
|
|
|
210
210
|
"node-plop": "~0.31.0",
|
|
211
211
|
"nodemon": "~2.0.19",
|
|
212
212
|
"normalize-path": "~3.0.0",
|
|
213
|
-
"npm-check-updates": "16.0.
|
|
214
|
-
"pino": "~8.
|
|
213
|
+
"npm-check-updates": "16.0.5",
|
|
214
|
+
"pino": "~8.4.0",
|
|
215
215
|
"pino-pretty": "~8.1.0",
|
|
216
216
|
"plop": "~3.1.1",
|
|
217
|
-
"postcss": "~8.4.
|
|
217
|
+
"postcss": "~8.4.16",
|
|
218
218
|
"postcss-html": "~1.5.0",
|
|
219
219
|
"postcss-jsx": "~0.36.4",
|
|
220
220
|
"postcss-loader": "~7.0.1",
|
|
@@ -244,13 +244,13 @@
|
|
|
244
244
|
"swc-loader": "~0.2.3",
|
|
245
245
|
"ts-node": "~10.9.1",
|
|
246
246
|
"tsc-alias": "~1.7.0",
|
|
247
|
-
"typedoc": "~0.23.
|
|
247
|
+
"typedoc": "~0.23.10",
|
|
248
248
|
"typescript": "~4.7.4",
|
|
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.
|
|
252
|
+
"vite": "~3.0.5",
|
|
253
|
+
"vitest": "~0.21.1",
|
|
254
254
|
"vite-tsconfig-paths": "~3.5.0",
|
|
255
255
|
"webpack": "~5.74.0",
|
|
256
256
|
"webpack-bundle-analyzer": "~4.5.0",
|