@elliemae/pui-cli 7.0.0-alpha.13 → 7.0.0-alpha.16
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/babel.config.cjs +1 -1
- package/dist/cjs/commands/test.js +13 -5
- package/dist/cjs/testing/jest.config.cjs +1 -0
- package/dist/cjs/testing/setup-test-env.js +19 -0
- package/dist/cjs/testing/vitest.config.js +17 -1
- package/dist/esm/babel.config.cjs +1 -1
- package/dist/esm/commands/test.js +13 -5
- package/dist/esm/testing/jest.config.cjs +1 -0
- package/dist/esm/testing/setup-test-env.js +4 -0
- package/dist/esm/testing/vitest.config.js +14 -1
- package/dist/types/commands/test.d.ts +10 -6
- package/dist/types/testing/jest.config.d.cts +1 -0
- package/dist/types/testing/jest.node.config.d.cts +1 -0
- package/dist/types/testing/setup-test-env.d.ts +2 -0
- package/dist/types/testing/vitest.config.d.ts +1 -1
- package/dist/types/webpack/helpers.d.ts +1 -1
- package/package.json +67 -63
|
@@ -10,7 +10,7 @@ const nodeEnvPreset = {
|
|
|
10
10
|
const webEnvPreset = {
|
|
11
11
|
modules: process.env.ES_MODULES === 'false' ? 'commonjs' : false,
|
|
12
12
|
useBuiltIns: 'usage',
|
|
13
|
-
corejs: { version: '3.
|
|
13
|
+
corejs: { version: '3.22', proposals: true },
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
const presetEnvOptions =
|
|
@@ -29,17 +29,18 @@ const { CI = false } = process.env;
|
|
|
29
29
|
const test = async (commandOptions) => {
|
|
30
30
|
await (0, import_utils.exec)(`cross-env NODE_ENV=test jest ${commandOptions}`);
|
|
31
31
|
};
|
|
32
|
+
const debugTest = async () => {
|
|
33
|
+
await (0, import_utils.exec)(`node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch`);
|
|
34
|
+
};
|
|
32
35
|
const testCmd = {
|
|
33
36
|
handler: async (argv) => {
|
|
34
|
-
let commandOptions = "--coverage";
|
|
37
|
+
let commandOptions = "--coverage --maxWorkers=50%";
|
|
35
38
|
if (argv.fix)
|
|
36
39
|
commandOptions = "-u";
|
|
37
40
|
else if (argv.watch)
|
|
38
41
|
commandOptions = "--watchAll";
|
|
39
42
|
if (CI)
|
|
40
|
-
commandOptions += " --ci --
|
|
41
|
-
else
|
|
42
|
-
commandOptions += " --maxWorkers=50%";
|
|
43
|
+
commandOptions += " --ci --no-colors";
|
|
43
44
|
if (argv.p)
|
|
44
45
|
commandOptions += " --passWithNoTests";
|
|
45
46
|
if (argv.r)
|
|
@@ -50,7 +51,11 @@ const testCmd = {
|
|
|
50
51
|
if (CI) {
|
|
51
52
|
await (0, import_utils.exec)("rimraf ./reports");
|
|
52
53
|
}
|
|
53
|
-
|
|
54
|
+
if (argv.debug) {
|
|
55
|
+
await debugTest();
|
|
56
|
+
} else {
|
|
57
|
+
await test(commandOptions);
|
|
58
|
+
}
|
|
54
59
|
(0, import_utils.logSuccess)("Unit test execution completed");
|
|
55
60
|
} catch (err) {
|
|
56
61
|
(0, import_utils.logError)("Unit test execution failed", err);
|
|
@@ -70,6 +75,9 @@ const testCmd = {
|
|
|
70
75
|
alias: "w",
|
|
71
76
|
type: "boolean"
|
|
72
77
|
},
|
|
78
|
+
debug: {
|
|
79
|
+
type: "boolean"
|
|
80
|
+
},
|
|
73
81
|
passWithNoTests: {
|
|
74
82
|
alias: "p",
|
|
75
83
|
type: "boolean"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __copyProps = (to, from, except, desc) => {
|
|
8
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
9
|
+
for (let key of __getOwnPropNames(from))
|
|
10
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
11
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
+
}
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
16
|
+
var React = __toESM(require("react"), 1);
|
|
17
|
+
var import_jest_styled_components = require("jest-styled-components");
|
|
18
|
+
var import_extend_expect = require("@testing-library/jest-dom/extend-expect");
|
|
19
|
+
global.React = React;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
4
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
7
|
var __export = (target, all) => {
|
|
6
8
|
for (var name in all)
|
|
@@ -14,6 +16,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
14
16
|
}
|
|
15
17
|
return to;
|
|
16
18
|
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
17
20
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
21
|
var vitest_config_exports = {};
|
|
19
22
|
__export(vitest_config_exports, {
|
|
@@ -21,14 +24,27 @@ __export(vitest_config_exports, {
|
|
|
21
24
|
});
|
|
22
25
|
module.exports = __toCommonJS(vitest_config_exports);
|
|
23
26
|
var import_config = require("vitest/config");
|
|
27
|
+
var import_plugin_react = __toESM(require("@vitejs/plugin-react"), 1);
|
|
28
|
+
var import_vite_tsconfig_paths = __toESM(require("vite-tsconfig-paths"), 1);
|
|
24
29
|
var vitest_config_default = (0, import_config.defineConfig)({
|
|
30
|
+
plugins: [(0, import_plugin_react.default)(), (0, import_vite_tsconfig_paths.default)()],
|
|
25
31
|
test: {
|
|
26
32
|
globals: true,
|
|
27
33
|
root: process.cwd(),
|
|
34
|
+
environment: "happy-dom",
|
|
35
|
+
setupFiles: ["./setup-test-env.ts"],
|
|
36
|
+
include: ["./{app,lib}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
28
37
|
exclude: [...import_config.configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
|
|
38
|
+
watchIgnore: [
|
|
39
|
+
".*\\/node_modules\\/.*",
|
|
40
|
+
".*\\/build\\/.*",
|
|
41
|
+
".*\\/dist\\/.*"
|
|
42
|
+
],
|
|
29
43
|
coverage: {
|
|
30
44
|
reportsDirectory: "./reports/coverage"
|
|
31
45
|
},
|
|
32
|
-
|
|
46
|
+
deps: {
|
|
47
|
+
inline: ["**/app.config.json"]
|
|
48
|
+
}
|
|
33
49
|
}
|
|
34
50
|
});
|
|
@@ -10,7 +10,7 @@ const nodeEnvPreset = {
|
|
|
10
10
|
const webEnvPreset = {
|
|
11
11
|
modules: process.env.ES_MODULES === 'false' ? 'commonjs' : false,
|
|
12
12
|
useBuiltIns: 'usage',
|
|
13
|
-
corejs: { version: '3.
|
|
13
|
+
corejs: { version: '3.22', proposals: true },
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
const presetEnvOptions =
|
|
@@ -4,17 +4,18 @@ const { CI = false } = process.env;
|
|
|
4
4
|
const test = async (commandOptions) => {
|
|
5
5
|
await exec(`cross-env NODE_ENV=test jest ${commandOptions}`);
|
|
6
6
|
};
|
|
7
|
+
const debugTest = async () => {
|
|
8
|
+
await exec(`node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch`);
|
|
9
|
+
};
|
|
7
10
|
const testCmd = {
|
|
8
11
|
handler: async (argv) => {
|
|
9
|
-
let commandOptions = "--coverage";
|
|
12
|
+
let commandOptions = "--coverage --maxWorkers=50%";
|
|
10
13
|
if (argv.fix)
|
|
11
14
|
commandOptions = "-u";
|
|
12
15
|
else if (argv.watch)
|
|
13
16
|
commandOptions = "--watchAll";
|
|
14
17
|
if (CI)
|
|
15
|
-
commandOptions += " --ci --
|
|
16
|
-
else
|
|
17
|
-
commandOptions += " --maxWorkers=50%";
|
|
18
|
+
commandOptions += " --ci --no-colors";
|
|
18
19
|
if (argv.p)
|
|
19
20
|
commandOptions += " --passWithNoTests";
|
|
20
21
|
if (argv.r)
|
|
@@ -25,7 +26,11 @@ const testCmd = {
|
|
|
25
26
|
if (CI) {
|
|
26
27
|
await exec("rimraf ./reports");
|
|
27
28
|
}
|
|
28
|
-
|
|
29
|
+
if (argv.debug) {
|
|
30
|
+
await debugTest();
|
|
31
|
+
} else {
|
|
32
|
+
await test(commandOptions);
|
|
33
|
+
}
|
|
29
34
|
logSuccess("Unit test execution completed");
|
|
30
35
|
} catch (err) {
|
|
31
36
|
logError("Unit test execution failed", err);
|
|
@@ -45,6 +50,9 @@ const testCmd = {
|
|
|
45
50
|
alias: "w",
|
|
46
51
|
type: "boolean"
|
|
47
52
|
},
|
|
53
|
+
debug: {
|
|
54
|
+
type: "boolean"
|
|
55
|
+
},
|
|
48
56
|
passWithNoTests: {
|
|
49
57
|
alias: "p",
|
|
50
58
|
type: "boolean"
|
|
@@ -1,13 +1,26 @@
|
|
|
1
1
|
import { defineConfig, configDefaults } from "vitest/config";
|
|
2
|
+
import react from "@vitejs/plugin-react";
|
|
3
|
+
import tsconfigPaths from "vite-tsconfig-paths";
|
|
2
4
|
var vitest_config_default = defineConfig({
|
|
5
|
+
plugins: [react(), tsconfigPaths()],
|
|
3
6
|
test: {
|
|
4
7
|
globals: true,
|
|
5
8
|
root: process.cwd(),
|
|
9
|
+
environment: "happy-dom",
|
|
10
|
+
setupFiles: ["./setup-test-env.ts"],
|
|
11
|
+
include: ["./{app,lib}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
6
12
|
exclude: [...configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
|
|
13
|
+
watchIgnore: [
|
|
14
|
+
".*\\/node_modules\\/.*",
|
|
15
|
+
".*\\/build\\/.*",
|
|
16
|
+
".*\\/dist\\/.*"
|
|
17
|
+
],
|
|
7
18
|
coverage: {
|
|
8
19
|
reportsDirectory: "./reports/coverage"
|
|
9
20
|
},
|
|
10
|
-
|
|
21
|
+
deps: {
|
|
22
|
+
inline: ["**/app.config.json"]
|
|
23
|
+
}
|
|
11
24
|
}
|
|
12
25
|
});
|
|
13
26
|
export {
|
|
@@ -13,23 +13,27 @@ export namespace testCmd {
|
|
|
13
13
|
const type_1: string;
|
|
14
14
|
export { type_1 as type };
|
|
15
15
|
}
|
|
16
|
+
namespace debug {
|
|
17
|
+
const type_2: string;
|
|
18
|
+
export { type_2 as type };
|
|
19
|
+
}
|
|
16
20
|
namespace passWithNoTests {
|
|
17
21
|
const alias_2: string;
|
|
18
22
|
export { alias_2 as alias };
|
|
19
|
-
const
|
|
20
|
-
export {
|
|
23
|
+
const type_3: string;
|
|
24
|
+
export { type_3 as type };
|
|
21
25
|
}
|
|
22
26
|
namespace findReleatedTests {
|
|
23
27
|
const alias_3: string;
|
|
24
28
|
export { alias_3 as alias };
|
|
25
|
-
const
|
|
26
|
-
export {
|
|
29
|
+
const type_4: string;
|
|
30
|
+
export { type_4 as type };
|
|
27
31
|
}
|
|
28
32
|
namespace silent {
|
|
29
33
|
const alias_4: string;
|
|
30
34
|
export { alias_4 as alias };
|
|
31
|
-
const
|
|
32
|
-
export {
|
|
35
|
+
const type_5: string;
|
|
36
|
+
export { type_5 as type };
|
|
33
37
|
}
|
|
34
38
|
}
|
|
35
39
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vitest/dist/config").
|
|
1
|
+
declare const _default: import("vitest/dist/config").UserConfigExport;
|
|
2
2
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
export const LATEST_VERSION: "latest";
|
|
3
3
|
export function excludeNodeModulesExcept(modules: any): (modulePath: any) => boolean;
|
|
4
|
-
export function getLibraryName():
|
|
4
|
+
export function getLibraryName(): string;
|
|
5
5
|
export function mapToFolder(dependencies: any, folder: any): any;
|
|
6
6
|
export function getAlias(): any;
|
|
7
7
|
export const modulesToTranspile: string[];
|
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.16",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -64,59 +64,61 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@axe-core/react": "~4.4.2",
|
|
66
66
|
"@babel/cli": "~7.17.10",
|
|
67
|
-
"@babel/core": "~7.
|
|
67
|
+
"@babel/core": "~7.18.0",
|
|
68
68
|
"@babel/eslint-parser": "~7.17.0",
|
|
69
69
|
"@babel/node": "~7.17.10",
|
|
70
|
-
"@babel/plugin-proposal-class-properties": "~7.
|
|
71
|
-
"@babel/plugin-proposal-export-default-from": "~7.
|
|
70
|
+
"@babel/plugin-proposal-class-properties": "~7.17.12",
|
|
71
|
+
"@babel/plugin-proposal-export-default-from": "~7.17.12",
|
|
72
72
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
73
|
-
"@babel/plugin-transform-modules-commonjs": "~7.
|
|
74
|
-
"@babel/plugin-transform-react-constant-elements": "~7.17.
|
|
73
|
+
"@babel/plugin-transform-modules-commonjs": "~7.18.0",
|
|
74
|
+
"@babel/plugin-transform-react-constant-elements": "~7.17.12",
|
|
75
75
|
"@babel/plugin-transform-react-inline-elements": "~7.16.7",
|
|
76
76
|
"@babel/plugin-transform-react-jsx-source": "~7.16.7",
|
|
77
|
-
"@babel/plugin-transform-runtime": "~7.
|
|
78
|
-
"@babel/preset-env": "~7.
|
|
79
|
-
"@babel/preset-react": "~7.
|
|
80
|
-
"@babel/preset-typescript": "~7.
|
|
81
|
-
"@babel/runtime": "~7.
|
|
82
|
-
"@commitlint/cli": "~
|
|
83
|
-
"@commitlint/config-conventional": "~
|
|
77
|
+
"@babel/plugin-transform-runtime": "~7.18.0",
|
|
78
|
+
"@babel/preset-env": "~7.18.0",
|
|
79
|
+
"@babel/preset-react": "~7.17.12",
|
|
80
|
+
"@babel/preset-typescript": "~7.17.12",
|
|
81
|
+
"@babel/runtime": "~7.18.0",
|
|
82
|
+
"@commitlint/cli": "~17.0.0",
|
|
83
|
+
"@commitlint/config-conventional": "~17.0.0",
|
|
84
84
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.4.2",
|
|
85
|
-
"@faker-js/faker": "
|
|
86
|
-
"@nrwl/cli": "14.1.
|
|
87
|
-
"@nrwl/tao": "14.1.
|
|
88
|
-
"@nrwl/workspace": "14.1.
|
|
89
|
-
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.
|
|
85
|
+
"@faker-js/faker": "7.0.1",
|
|
86
|
+
"@nrwl/cli": "14.1.8",
|
|
87
|
+
"@nrwl/tao": "14.1.8",
|
|
88
|
+
"@nrwl/workspace": "14.1.8",
|
|
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.
|
|
94
|
-
"@storybook/addon-essentials": "~6.
|
|
93
|
+
"@storybook/addon-a11y": "~6.5.5",
|
|
94
|
+
"@storybook/addon-essentials": "~6.5.5",
|
|
95
95
|
"@storybook/addon-events": "~6.2.9",
|
|
96
|
-
"@storybook/addon-interactions": "~6.
|
|
97
|
-
"@storybook/addon-links": "~6.
|
|
98
|
-
"@storybook/addon-storysource": "~6.
|
|
99
|
-
"@storybook/builder-vite": "~0.1.
|
|
100
|
-
"@storybook/builder-webpack5": "~6.
|
|
101
|
-
"@storybook/manager-webpack5": "~6.
|
|
102
|
-
"@storybook/react": "~6.
|
|
103
|
-
"@storybook/theming": "~6.
|
|
96
|
+
"@storybook/addon-interactions": "~6.5.5",
|
|
97
|
+
"@storybook/addon-links": "~6.5.5",
|
|
98
|
+
"@storybook/addon-storysource": "~6.5.5",
|
|
99
|
+
"@storybook/builder-vite": "~0.1.35",
|
|
100
|
+
"@storybook/builder-webpack5": "~6.5.5",
|
|
101
|
+
"@storybook/manager-webpack5": "~6.5.5",
|
|
102
|
+
"@storybook/react": "~6.5.5",
|
|
103
|
+
"@storybook/theming": "~6.5.5",
|
|
104
104
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
105
105
|
"@svgr/webpack": "~6.2.1",
|
|
106
106
|
"@swc/cli": "~0.1.57",
|
|
107
|
-
"@swc/core": "~1.2.
|
|
107
|
+
"@swc/core": "~1.2.192",
|
|
108
108
|
"@swc/jest": "~0.2.21",
|
|
109
109
|
"@testing-library/jest-dom": "~5.16.4",
|
|
110
110
|
"@testing-library/react": "~13.2.0",
|
|
111
111
|
"@testing-library/react-hooks": "~8.0.0",
|
|
112
|
-
"@
|
|
113
|
-
"@types/
|
|
112
|
+
"@testing-library/user-event": "~14.2.0",
|
|
113
|
+
"@types/jest": "~27.5.1",
|
|
114
|
+
"@types/node": "~17.0.35",
|
|
114
115
|
"@types/rimraf": "~3.0.2",
|
|
115
116
|
"@types/testing-library__jest-dom": "~5.14.3",
|
|
116
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
117
|
-
"@typescript-eslint/parser": "~5.
|
|
117
|
+
"@typescript-eslint/eslint-plugin": "~5.26.0",
|
|
118
|
+
"@typescript-eslint/parser": "~5.26.0",
|
|
119
|
+
"@vitejs/plugin-react": "~1.3.2",
|
|
118
120
|
"autoprefixer": "~10.4.7",
|
|
119
|
-
"axe-core": "~4.4.
|
|
121
|
+
"axe-core": "~4.4.2",
|
|
120
122
|
"babel-plugin-date-fns": "~2.0.0",
|
|
121
123
|
"babel-plugin-dynamic-import-node": "~2.3.3",
|
|
122
124
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
@@ -134,22 +136,22 @@
|
|
|
134
136
|
"chalk": "~5.0.1",
|
|
135
137
|
"circular-dependency-plugin": "~5.2.2",
|
|
136
138
|
"compression": "~1.7.4",
|
|
137
|
-
"compression-webpack-plugin": "~
|
|
138
|
-
"copy-webpack-plugin": "~
|
|
139
|
+
"compression-webpack-plugin": "~10.0.0",
|
|
140
|
+
"copy-webpack-plugin": "~11.0.0",
|
|
139
141
|
"cors": "~2.8.5",
|
|
140
142
|
"cross-env": "~7.0.3",
|
|
141
143
|
"css-loader": "~6.7.1",
|
|
142
|
-
"css-minimizer-webpack-plugin": "~
|
|
144
|
+
"css-minimizer-webpack-plugin": "~4.0.0",
|
|
143
145
|
"depcheck": "~1.4.3",
|
|
144
146
|
"docdash": "~1.2.0",
|
|
145
|
-
"dotenv": "~16.0.
|
|
147
|
+
"dotenv": "~16.0.1",
|
|
146
148
|
"dotenv-webpack": "~7.1.0",
|
|
147
149
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
148
150
|
"enhanced-resolve": "5.9.3",
|
|
149
|
-
"esbuild": "~0.14.
|
|
150
|
-
"esbuild-loader": "~2.
|
|
151
|
+
"esbuild": "~0.14.39",
|
|
152
|
+
"esbuild-loader": "~2.19.0",
|
|
151
153
|
"esbuild-plugin-svgr": "~1.0.1",
|
|
152
|
-
"eslint": "~8.
|
|
154
|
+
"eslint": "~8.16.0",
|
|
153
155
|
"eslint-config-airbnb": "~19.0.4",
|
|
154
156
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
155
157
|
"eslint-config-airbnb-typescript": "~17.0.0",
|
|
@@ -161,62 +163,63 @@
|
|
|
161
163
|
"eslint-plugin-compat": "~4.0.2",
|
|
162
164
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
163
165
|
"eslint-plugin-import": "~2.26.0",
|
|
164
|
-
"eslint-plugin-jest": "~26.
|
|
165
|
-
"eslint-plugin-jsdoc": "~39.2
|
|
166
|
+
"eslint-plugin-jest": "~26.2.2",
|
|
167
|
+
"eslint-plugin-jsdoc": "~39.3.2",
|
|
166
168
|
"eslint-plugin-jsx-a11y": "~6.5.1",
|
|
167
169
|
"eslint-plugin-mdx": "~1.17.0",
|
|
168
170
|
"eslint-plugin-prettier": "~4.0.0",
|
|
169
|
-
"eslint-plugin-react": "~7.
|
|
171
|
+
"eslint-plugin-react": "~7.30.0",
|
|
170
172
|
"eslint-plugin-react-hooks": "~4.5.0",
|
|
171
173
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
172
|
-
"eslint-plugin-storybook": "~0.5.
|
|
173
|
-
"eslint-plugin-testing-library": "~5.
|
|
174
|
+
"eslint-plugin-storybook": "~0.5.12",
|
|
175
|
+
"eslint-plugin-testing-library": "~5.5.0",
|
|
174
176
|
"eslint-plugin-wdio": "~7.19.4",
|
|
175
177
|
"execa": "~6.1.0",
|
|
176
178
|
"express": "~4.18.1",
|
|
177
179
|
"express-pino-logger": "~7.0.0",
|
|
178
|
-
"express-static-gzip": "~2.1.
|
|
180
|
+
"express-static-gzip": "~2.1.7",
|
|
179
181
|
"favicons": "~6.2.2",
|
|
180
182
|
"favicons-webpack-plugin": "~5.0.2",
|
|
181
183
|
"fast-glob": "~3.2.11",
|
|
182
184
|
"find-up": "~6.3.0",
|
|
183
185
|
"find-up-cli": "~5.0.0",
|
|
184
|
-
"happy-dom": "~
|
|
186
|
+
"happy-dom": "~4.0.1",
|
|
185
187
|
"helmet-csp": "~3.4.0",
|
|
186
188
|
"html-webpack-plugin": "~5.5.0",
|
|
187
189
|
"http-server": "~14.1.0",
|
|
188
190
|
"husky": "~8.0.1",
|
|
189
191
|
"husky-init": "~8.0.0",
|
|
190
|
-
"imports-loader": "~
|
|
191
|
-
"ip": "~1.1.
|
|
192
|
+
"imports-loader": "~4.0.0",
|
|
193
|
+
"ip": "~1.1.8",
|
|
192
194
|
"jest-axe": "~6.0.0",
|
|
193
195
|
"jest-cli": "~28.1.0",
|
|
194
196
|
"jest-environment-jsdom": "~28.1.0",
|
|
195
197
|
"jest-sonar-reporter": "~2.0.0",
|
|
196
198
|
"jest-styled-components": "~7.0.8",
|
|
199
|
+
"jest-watch-typeahead": "~1.1.0",
|
|
197
200
|
"jscodeshift": "~0.13.1",
|
|
198
201
|
"jsdoc": "~3.6.10",
|
|
199
202
|
"lerna": "~4.0.0",
|
|
200
|
-
"lint-staged": "~12.4.
|
|
203
|
+
"lint-staged": "~12.4.2",
|
|
201
204
|
"mini-css-extract-plugin": "~2.6.0",
|
|
202
205
|
"minimist": "~1.2.6",
|
|
203
206
|
"moment": "~2.29.3",
|
|
204
207
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
205
|
-
"msw": "~0.
|
|
208
|
+
"msw": "~0.41.0",
|
|
206
209
|
"node-gyp": "~9.0.0",
|
|
207
210
|
"node-plop": "~0.31.0",
|
|
208
211
|
"nodemon": "~2.0.16",
|
|
209
212
|
"normalize-path": "~3.0.0",
|
|
210
|
-
"npm-check-updates": "
|
|
213
|
+
"npm-check-updates": "13.0.3",
|
|
211
214
|
"pino": "~7.11.0",
|
|
212
215
|
"pino-pretty": "~7.6.1",
|
|
213
216
|
"plop": "~3.1.0",
|
|
214
|
-
"postcss": "~8.4.
|
|
217
|
+
"postcss": "~8.4.14",
|
|
215
218
|
"postcss-html": "~1.4.1",
|
|
216
219
|
"postcss-jsx": "~0.36.4",
|
|
217
|
-
"postcss-loader": "~
|
|
220
|
+
"postcss-loader": "~7.0.0",
|
|
218
221
|
"postcss-markdown": "~1.2.0",
|
|
219
|
-
"postcss-preset-env": "~7.
|
|
222
|
+
"postcss-preset-env": "~7.6.0",
|
|
220
223
|
"postcss-syntax": "~0.36.2",
|
|
221
224
|
"prettier": "~2.6.2",
|
|
222
225
|
"pug": "~3.0.2",
|
|
@@ -235,19 +238,20 @@
|
|
|
235
238
|
"storybook-builder-vite": "~0.1.23",
|
|
236
239
|
"storybook-react-router": "~1.0.8",
|
|
237
240
|
"style-loader": "~3.3.1",
|
|
238
|
-
"stylelint": "~14.8.
|
|
241
|
+
"stylelint": "~14.8.4",
|
|
239
242
|
"stylelint-config-recommended": "~7.0.0",
|
|
240
243
|
"stylelint-config-styled-components": "~0.1.1",
|
|
241
|
-
"swc-loader": "~0.2.
|
|
242
|
-
"ts-node": "~10.
|
|
244
|
+
"swc-loader": "~0.2.1",
|
|
245
|
+
"ts-node": "~10.8.0",
|
|
243
246
|
"tsc-alias": "~1.6.7",
|
|
244
247
|
"typescript": "~4.6.4",
|
|
245
248
|
"update-notifier": "~5.1.0",
|
|
246
249
|
"url-loader": "~4.1.1",
|
|
247
250
|
"uuid": "~8.3.2",
|
|
248
|
-
"vite": "~2.9.
|
|
249
|
-
"vitest": "~0.12.
|
|
250
|
-
"
|
|
251
|
+
"vite": "~2.9.9",
|
|
252
|
+
"vitest": "~0.12.9",
|
|
253
|
+
"vite-tsconfig-paths": "~3.4.1",
|
|
254
|
+
"webpack": "~5.72.1",
|
|
251
255
|
"webpack-bundle-analyzer": "~4.5.0",
|
|
252
256
|
"webpack-cli": "~4.9.2",
|
|
253
257
|
"webpack-dev-server": "~4.9.0",
|
|
@@ -255,7 +259,7 @@
|
|
|
255
259
|
"webpack-merge": "~5.8.0",
|
|
256
260
|
"whatwg-fetch": "~3.6.2",
|
|
257
261
|
"workbox-webpack-plugin": "~6.5.3",
|
|
258
|
-
"yargs": "~17.
|
|
262
|
+
"yargs": "~17.5.1"
|
|
259
263
|
},
|
|
260
264
|
"devDependencies": {
|
|
261
265
|
"react": "~18.1.0",
|