@elliemae/pui-cli 6.5.6 → 6.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.
- package/lib/cli-commands/version.js +53 -0
- package/lib/cli.js +2 -0
- package/lib/monorepo/delete-merged-tags.js +48 -0
- package/lib/monorepo/set-registry-version.js +22 -0
- package/lib/monorepo/set-workspace-version.js +29 -0
- package/lib/monorepo/utils.js +1 -1
- package/lib/testing/jest.config.js +2 -2
- package/lib/webpack/helpers.js +2 -2
- package/package.json +38 -35
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const { exit } = require('yargs');
|
|
2
|
+
const { exec, logError } = require('./utils');
|
|
3
|
+
const { setWorkspaceVersion } = require('../monorepo/set-workspace-version');
|
|
4
|
+
const { setRegistryVersion } = require('../monorepo/set-registry-version');
|
|
5
|
+
const { deleteMergedTags } = require('../monorepo/delete-merged-tags');
|
|
6
|
+
|
|
7
|
+
const version = async (lernaOptions = '') => {
|
|
8
|
+
await exec(
|
|
9
|
+
`cross-env NODE_ENV=production lerna version --conventional-commits --exact --create-release github --force-publish --yes ${lernaOptions}`,
|
|
10
|
+
);
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
async function handler(argv) {
|
|
14
|
+
try {
|
|
15
|
+
if (argv.deleteTags) {
|
|
16
|
+
await deleteMergedTags();
|
|
17
|
+
} else if (argv.useRegistry) {
|
|
18
|
+
await setRegistryVersion();
|
|
19
|
+
} else if (argv.useWorkspace) {
|
|
20
|
+
await setWorkspaceVersion();
|
|
21
|
+
} else {
|
|
22
|
+
await version(argv.lernaOptions);
|
|
23
|
+
}
|
|
24
|
+
} catch (err) {
|
|
25
|
+
logError('Monorepo versioning failed', err);
|
|
26
|
+
exit(-1, err);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
exports.command = 'version [options]';
|
|
31
|
+
|
|
32
|
+
exports.describe = 'version monorepo';
|
|
33
|
+
|
|
34
|
+
exports.builder = {
|
|
35
|
+
deleteTags: {
|
|
36
|
+
type: 'boolean',
|
|
37
|
+
default: false,
|
|
38
|
+
},
|
|
39
|
+
useRegistry: {
|
|
40
|
+
type: 'boolean',
|
|
41
|
+
default: false,
|
|
42
|
+
},
|
|
43
|
+
useWorkspace: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: false,
|
|
46
|
+
},
|
|
47
|
+
lernaOptions: {
|
|
48
|
+
type: 'string',
|
|
49
|
+
default: false,
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
exports.handler = handler;
|
package/lib/cli.js
CHANGED
|
@@ -13,6 +13,7 @@ const gendocCmd = require('./cli-commands/gendoc');
|
|
|
13
13
|
const codemodCmd = require('./cli-commands/codemod');
|
|
14
14
|
const storybookCmd = require('./cli-commands/storybook');
|
|
15
15
|
const vitestCmd = require('./cli-commands/vitest');
|
|
16
|
+
const versionCmd = require('./cli-commands/version');
|
|
16
17
|
|
|
17
18
|
envConfig();
|
|
18
19
|
process.env.PATH +=
|
|
@@ -27,5 +28,6 @@ yargs.command(gendocCmd).help().argv;
|
|
|
27
28
|
yargs.command(codemodCmd).help().argv;
|
|
28
29
|
yargs.command(storybookCmd).help().argv;
|
|
29
30
|
yargs.command(vitestCmd).help().argv;
|
|
31
|
+
yargs.command(versionCmd).help().argv;
|
|
30
32
|
|
|
31
33
|
notifyUpdates();
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const { execSync } = require('child_process');
|
|
2
|
+
const cwd = process.cwd();
|
|
3
|
+
const execaOptions = { cwd, stdio: 'inherit' };
|
|
4
|
+
|
|
5
|
+
const semVerRegEx =
|
|
6
|
+
/^v?(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/;
|
|
7
|
+
|
|
8
|
+
const isSemVersion = (tagName) => semVerRegEx.test(tagName);
|
|
9
|
+
const branchName = (process.env.BRANCH_NAME || 'master').toLowerCase();
|
|
10
|
+
|
|
11
|
+
const branchTags = {
|
|
12
|
+
master: /^v?(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/,
|
|
13
|
+
next: /^v.*-next\.(0|[1-9]\d*)/,
|
|
14
|
+
alpha: /^v.*-alpha\.(0|[1-9]\d*)/,
|
|
15
|
+
beta: /^v.*-beta\.(0|[1-9]\d*)/,
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
const deleteTags = (cmd, filter) => {
|
|
19
|
+
const result = execSync(cmd, { cwd });
|
|
20
|
+
if (!result) return;
|
|
21
|
+
const tags = result.toString().split('\n').join(' ');
|
|
22
|
+
execSync(`git tag -d ${filter ? filter(tags) : tags}`, { cwd });
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const tagsFromOtherBranches = (tags = []) => {
|
|
26
|
+
const regex = branchTags[branchName] || branchTags.master;
|
|
27
|
+
return tags
|
|
28
|
+
.split(' ')
|
|
29
|
+
.filter((tagName) => isSemVersion(tagName) && !regex.test(tagName))
|
|
30
|
+
.join(' ');
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.deleteMergedTags = () => {
|
|
34
|
+
try {
|
|
35
|
+
// get tag names
|
|
36
|
+
if (branchName) {
|
|
37
|
+
// delete all tags that are not reachable from the current branch
|
|
38
|
+
deleteTags(`git tag -l --no-merged ${branchName}`);
|
|
39
|
+
// delete all tags that were not created in current branch
|
|
40
|
+
deleteTags(`git tag -l --merged ${branchName}`, tagsFromOtherBranches);
|
|
41
|
+
console.log('Last two tags: ');
|
|
42
|
+
execSync('git tag --sort=-creatordate | head -n 2', execaOptions);
|
|
43
|
+
}
|
|
44
|
+
} catch (error) {
|
|
45
|
+
// eslint-disable-next-line no-console
|
|
46
|
+
console.error(error);
|
|
47
|
+
}
|
|
48
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const fg = require('fast-glob');
|
|
2
|
+
const { readFile, writeFile } = require('fs/promises');
|
|
3
|
+
const normalizePath = require('normalize-path');
|
|
4
|
+
const { findMonoRepoRoot } = require('./utils');
|
|
5
|
+
|
|
6
|
+
const monorepoRoot = normalizePath(findMonoRepoRoot() || '');
|
|
7
|
+
|
|
8
|
+
exports.setRegistryVersion = async () => {
|
|
9
|
+
const files = await fg([
|
|
10
|
+
`${monorepoRoot}/libs/*/package.json`,
|
|
11
|
+
`${monorepoRoot}/apps/*/package.json`,
|
|
12
|
+
`${monorepoRoot}/package.json`,
|
|
13
|
+
]);
|
|
14
|
+
Promise.all(
|
|
15
|
+
files.map(async (file) => {
|
|
16
|
+
let pkgJSONData = await readFile(file, 'utf8');
|
|
17
|
+
const pkgVersion = JSON.parse(pkgJSONData).version;
|
|
18
|
+
pkgJSONData = pkgJSONData.replace(/workspace:\*/g, pkgVersion);
|
|
19
|
+
await writeFile(file, pkgJSONData);
|
|
20
|
+
}),
|
|
21
|
+
);
|
|
22
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const fg = require('fast-glob');
|
|
2
|
+
const { readFile, writeFile } = require('fs/promises');
|
|
3
|
+
const normalizePath = require('normalize-path');
|
|
4
|
+
const { findMonoRepoRoot } = require('./utils');
|
|
5
|
+
|
|
6
|
+
const monorepoRoot = normalizePath(findMonoRepoRoot() || '');
|
|
7
|
+
|
|
8
|
+
exports.setWorkspaceVersion = async () => {
|
|
9
|
+
const files = await fg([
|
|
10
|
+
`${monorepoRoot}/libs/*/package.json`,
|
|
11
|
+
`${monorepoRoot}/apps/*/package.json`,
|
|
12
|
+
`${monorepoRoot}/package.json`,
|
|
13
|
+
]);
|
|
14
|
+
Promise.all(
|
|
15
|
+
files.map(async (file) => {
|
|
16
|
+
let pkgJSONData = await readFile(file, 'utf8');
|
|
17
|
+
const pkgVersion = JSON.parse(pkgJSONData).version;
|
|
18
|
+
pkgJSONData = pkgJSONData.replace(
|
|
19
|
+
new RegExp(pkgVersion, 'g'),
|
|
20
|
+
'workspace:*',
|
|
21
|
+
);
|
|
22
|
+
pkgJSONData = pkgJSONData.replace(
|
|
23
|
+
/"version": "workspace:\*"/g,
|
|
24
|
+
`"version": "${pkgVersion}"`,
|
|
25
|
+
);
|
|
26
|
+
await writeFile(file, pkgJSONData);
|
|
27
|
+
}),
|
|
28
|
+
);
|
|
29
|
+
};
|
package/lib/monorepo/utils.js
CHANGED
|
@@ -4,7 +4,7 @@ const { sync: findUp } = require('find-up');
|
|
|
4
4
|
const WORKSPACE_DIR_ENV_VAR = 'NPM_CONFIG_WORKSPACE_DIR';
|
|
5
5
|
const WORKSPACE_MANIFEST_FILENAME = 'pnpm-workspace.yaml';
|
|
6
6
|
|
|
7
|
-
exports.
|
|
7
|
+
exports.findMonoRepoRoot = (cwd = process.cwd()) => {
|
|
8
8
|
const workspaceManifestDirEnvVar =
|
|
9
9
|
process.env[WORKSPACE_DIR_ENV_VAR] ??
|
|
10
10
|
process.env[WORKSPACE_DIR_ENV_VAR.toLowerCase()];
|
|
@@ -2,7 +2,7 @@ const path = require('path');
|
|
|
2
2
|
const normalizePath = require('normalize-path');
|
|
3
3
|
const { getAppConfig, getAssetPath } = require('../webpack/helpers');
|
|
4
4
|
const swcrcConfig = require('../transpile/swcrc.config.js');
|
|
5
|
-
const {
|
|
5
|
+
const { findMonoRepoRoot } = require('../monorepo/utils');
|
|
6
6
|
|
|
7
7
|
let isReactModule = true;
|
|
8
8
|
try {
|
|
@@ -18,7 +18,7 @@ const getMockFilePath = (fileName) =>
|
|
|
18
18
|
normalizePath(path.resolve(__dirname, './mocks', fileName));
|
|
19
19
|
|
|
20
20
|
const getNodeModulesPath = (fileName) => {
|
|
21
|
-
const monorepoRoot =
|
|
21
|
+
const monorepoRoot = findMonoRepoRoot(process.cwd());
|
|
22
22
|
return normalizePath(
|
|
23
23
|
monorepoRoot
|
|
24
24
|
? path.join(monorepoRoot, 'node_modules', fileName)
|
package/lib/webpack/helpers.js
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require('fs');
|
|
|
4
4
|
const _ = require('lodash');
|
|
5
5
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
6
6
|
const zlib = require('zlib');
|
|
7
|
-
const {
|
|
7
|
+
const { findMonoRepoRoot } = require('../monorepo/utils');
|
|
8
8
|
|
|
9
9
|
let pathSep = path.sep;
|
|
10
10
|
if (pathSep === '\\')
|
|
@@ -68,7 +68,7 @@ const mapToFolder = (dependencies, folder) =>
|
|
|
68
68
|
);
|
|
69
69
|
|
|
70
70
|
const getAlias = () => {
|
|
71
|
-
const monorepoRoot =
|
|
71
|
+
const monorepoRoot = findMonoRepoRoot(process.cwd()) || '';
|
|
72
72
|
return mapToFolder(
|
|
73
73
|
[
|
|
74
74
|
'@babel/runtime',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.8.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "ICE MT UI Platform CLI",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"indent": 4
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@babel/cli": "~7.17.
|
|
51
|
-
"@babel/core": "~7.17.
|
|
50
|
+
"@babel/cli": "~7.17.6",
|
|
51
|
+
"@babel/core": "~7.17.5",
|
|
52
52
|
"@babel/eslint-parser": "~7.17.0",
|
|
53
53
|
"@babel/node": "~7.16.8",
|
|
54
54
|
"@babel/plugin-proposal-class-properties": "~7.16.7",
|
|
55
55
|
"@babel/plugin-proposal-export-default-from": "~7.16.7",
|
|
56
56
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
57
57
|
"@babel/plugin-transform-modules-commonjs": "~7.16.8",
|
|
58
|
-
"@babel/plugin-transform-react-constant-elements": "~7.
|
|
58
|
+
"@babel/plugin-transform-react-constant-elements": "~7.17.6",
|
|
59
59
|
"@babel/plugin-transform-react-inline-elements": "~7.16.7",
|
|
60
60
|
"@babel/plugin-transform-react-jsx-source": "~7.16.7",
|
|
61
61
|
"@babel/plugin-transform-runtime": "~7.17.0",
|
|
@@ -63,10 +63,13 @@
|
|
|
63
63
|
"@babel/preset-react": "~7.16.7",
|
|
64
64
|
"@babel/preset-typescript": "~7.16.7",
|
|
65
65
|
"@babel/runtime": "~7.17.2",
|
|
66
|
-
"@commitlint/cli": "~16.1
|
|
67
|
-
"@commitlint/config-conventional": "~16.
|
|
66
|
+
"@commitlint/cli": "~16.2.1",
|
|
67
|
+
"@commitlint/config-conventional": "~16.2.1",
|
|
68
68
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.3.0",
|
|
69
|
-
"@faker-js/faker": "6.0.0-alpha.
|
|
69
|
+
"@faker-js/faker": "6.0.0-alpha.7",
|
|
70
|
+
"@nrwl/cli": "13.8.3",
|
|
71
|
+
"@nrwl/tao": "13.8.3",
|
|
72
|
+
"@nrwl/workspace": "13.8.3",
|
|
70
73
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.4",
|
|
71
74
|
"@semantic-release/changelog": "~6.0.1",
|
|
72
75
|
"@semantic-release/exec": "~6.0.3",
|
|
@@ -84,17 +87,17 @@
|
|
|
84
87
|
"@stylelint/postcss-css-in-js": "~0.37.2",
|
|
85
88
|
"@svgr/webpack": "~6.2.1",
|
|
86
89
|
"@swc/cli": "~0.1.55",
|
|
87
|
-
"@swc/core": "~1.2.
|
|
90
|
+
"@swc/core": "~1.2.143",
|
|
88
91
|
"@swc/jest": "~0.2.17",
|
|
89
92
|
"@testing-library/jest-dom": "~5.16.2",
|
|
90
|
-
"@testing-library/react": "~12.1.
|
|
93
|
+
"@testing-library/react": "~12.1.3",
|
|
91
94
|
"@testing-library/react-hooks": "~7.0.2",
|
|
92
95
|
"@types/jest": "~27.4.0",
|
|
93
|
-
"@types/node": "~17.0.
|
|
96
|
+
"@types/node": "~17.0.19",
|
|
94
97
|
"@types/rimraf": "~3.0.2",
|
|
95
98
|
"@types/testing-library__jest-dom": "~5.14.2",
|
|
96
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
97
|
-
"@typescript-eslint/parser": "~5.
|
|
99
|
+
"@typescript-eslint/eslint-plugin": "~5.12.1",
|
|
100
|
+
"@typescript-eslint/parser": "~5.12.1",
|
|
98
101
|
"autoprefixer": "~10.4.2",
|
|
99
102
|
"axe-core": "~4.4.1",
|
|
100
103
|
"babel-loader": "~8.2.3",
|
|
@@ -105,14 +108,13 @@
|
|
|
105
108
|
"babel-plugin-lodash": "~3.3.4",
|
|
106
109
|
"babel-plugin-module-resolver": "~4.1.0",
|
|
107
110
|
"babel-plugin-source-map-support": "~2.1.3",
|
|
108
|
-
"babel-plugin-styled-components": "~2.0.
|
|
111
|
+
"babel-plugin-styled-components": "~2.0.3",
|
|
109
112
|
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
|
|
110
113
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
111
114
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
112
|
-
"body-parser": "~1.19.
|
|
113
|
-
"browserslist": "~4.19.
|
|
115
|
+
"body-parser": "~1.19.2",
|
|
116
|
+
"browserslist": "~4.19.3",
|
|
114
117
|
"browserslist-to-esbuild": "~1.1.1",
|
|
115
|
-
"bundlesize": "~0.18.1",
|
|
116
118
|
"canvas": "~2.9.0",
|
|
117
119
|
"chalk": "~4.1.2",
|
|
118
120
|
"circular-dependency-plugin": "~5.2.2",
|
|
@@ -129,14 +131,14 @@
|
|
|
129
131
|
"dotenv-webpack": "~7.1.0",
|
|
130
132
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
131
133
|
"enhanced-resolve": "~5.9.0",
|
|
132
|
-
"esbuild": "~0.14.
|
|
134
|
+
"esbuild": "~0.14.23",
|
|
133
135
|
"esbuild-loader": "~2.18.0",
|
|
134
136
|
"esbuild-plugin-svgr": "~1.0.0",
|
|
135
137
|
"eslint": "~8.9.0",
|
|
136
138
|
"eslint-config-airbnb": "~19.0.4",
|
|
137
139
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
138
140
|
"eslint-config-airbnb-typescript": "~16.1.0",
|
|
139
|
-
"eslint-config-prettier": "~8.
|
|
141
|
+
"eslint-config-prettier": "~8.4.0",
|
|
140
142
|
"eslint-config-react-app": "~7.0.0",
|
|
141
143
|
"eslint-import-resolver-babel-module": "~5.3.1",
|
|
142
144
|
"eslint-import-resolver-typescript": "~2.5.0",
|
|
@@ -144,31 +146,31 @@
|
|
|
144
146
|
"eslint-plugin-compat": "~4.0.2",
|
|
145
147
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
146
148
|
"eslint-plugin-import": "~2.25.4",
|
|
147
|
-
"eslint-plugin-jest": "~26.1.
|
|
148
|
-
"eslint-plugin-jsdoc": "~37.9.
|
|
149
|
+
"eslint-plugin-jest": "~26.1.1",
|
|
150
|
+
"eslint-plugin-jsdoc": "~37.9.4",
|
|
149
151
|
"eslint-plugin-jsx-a11y": "~6.5.1",
|
|
150
152
|
"eslint-plugin-mdx": "~1.16.0",
|
|
151
153
|
"eslint-plugin-prettier": "~4.0.0",
|
|
152
154
|
"eslint-plugin-react": "~7.28.0",
|
|
153
155
|
"eslint-plugin-react-hooks": "~4.3.0",
|
|
154
156
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
155
|
-
"eslint-plugin-storybook": "~0.5.
|
|
157
|
+
"eslint-plugin-storybook": "~0.5.7",
|
|
156
158
|
"eslint-plugin-testing-library": "~5.0.5",
|
|
157
159
|
"eslint-plugin-wdio": "~7.4.2",
|
|
158
160
|
"execa": "~5.1.1",
|
|
159
|
-
"express": "~4.17.
|
|
161
|
+
"express": "~4.17.3",
|
|
160
162
|
"express-pino-logger": "~7.0.0",
|
|
161
|
-
"express-static-gzip": "~2.1.
|
|
163
|
+
"express-static-gzip": "~2.1.5",
|
|
162
164
|
"favicons": "~6.2.2",
|
|
163
165
|
"favicons-webpack-plugin": "~5.0.2",
|
|
164
166
|
"fast-glob": "~3.2.11",
|
|
165
167
|
"find-up": "~5.0.0",
|
|
166
|
-
"happy-dom": "~2.
|
|
168
|
+
"happy-dom": "~2.40.0",
|
|
167
169
|
"helmet-csp": "~3.4.0",
|
|
168
170
|
"html-webpack-plugin": "~5.5.0",
|
|
169
171
|
"http-server": "~14.1.0",
|
|
170
172
|
"husky": "~7.0.4",
|
|
171
|
-
"husky-init": "~7.
|
|
173
|
+
"husky-init": "~7.1.0",
|
|
172
174
|
"imports-loader": "~3.1.1",
|
|
173
175
|
"ip": "~1.1.5",
|
|
174
176
|
"jest-axe": "~5.0.1",
|
|
@@ -177,19 +179,20 @@
|
|
|
177
179
|
"jest-styled-components": "~7.0.8",
|
|
178
180
|
"jscodeshift": "~0.13.1",
|
|
179
181
|
"jsdoc": "~3.6.10",
|
|
180
|
-
"
|
|
182
|
+
"lerna": "~4.0.0",
|
|
183
|
+
"lint-staged": "~12.3.4",
|
|
181
184
|
"mini-css-extract-plugin": "~2.5.3",
|
|
182
185
|
"minimist": "~1.2.5",
|
|
183
186
|
"moment": "~2.29.1",
|
|
184
187
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
185
|
-
"msw": "~0.
|
|
188
|
+
"msw": "~0.38.1",
|
|
186
189
|
"node-gyp": "~8.4.1",
|
|
187
190
|
"node-plop": "~0.30.0",
|
|
188
191
|
"nodemon": "~2.0.15",
|
|
189
192
|
"normalize-path": "~3.0.0",
|
|
190
|
-
"npm-check-updates": "12.
|
|
193
|
+
"npm-check-updates": "12.4.0",
|
|
191
194
|
"null-loader": "~4.0.1",
|
|
192
|
-
"pino": "~7.
|
|
195
|
+
"pino": "~7.8.0",
|
|
193
196
|
"pino-pretty": "~7.5.1",
|
|
194
197
|
"pinst": "~2.1.6",
|
|
195
198
|
"plop": "~3.0.5",
|
|
@@ -198,7 +201,7 @@
|
|
|
198
201
|
"postcss-jsx": "~0.36.4",
|
|
199
202
|
"postcss-loader": "~6.2.1",
|
|
200
203
|
"postcss-markdown": "~1.2.0",
|
|
201
|
-
"postcss-preset-env": "~7.
|
|
204
|
+
"postcss-preset-env": "~7.4.1",
|
|
202
205
|
"postcss-syntax": "~0.36.2",
|
|
203
206
|
"prettier": "~2.5.1",
|
|
204
207
|
"pug": "~3.0.2",
|
|
@@ -215,22 +218,22 @@
|
|
|
215
218
|
"slackify-markdown": "~4.3.1",
|
|
216
219
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
217
220
|
"storybook-addon-turbo-build": "~1.0.1",
|
|
218
|
-
"storybook-builder-vite": "~0.1.
|
|
221
|
+
"storybook-builder-vite": "~0.1.17",
|
|
219
222
|
"storybook-react-router": "~1.0.8",
|
|
220
223
|
"style-loader": "~3.3.1",
|
|
221
|
-
"stylelint": "~14.5.
|
|
224
|
+
"stylelint": "~14.5.2",
|
|
222
225
|
"stylelint-config-recommended": "~7.0.0",
|
|
223
226
|
"stylelint-config-styled-components": "~0.1.1",
|
|
224
227
|
"swc-loader": "~0.1.15",
|
|
225
228
|
"terser-webpack-plugin": "~5.3.1",
|
|
226
229
|
"ts-node": "~10.5.0",
|
|
227
|
-
"tsc-alias": "~1.6.
|
|
230
|
+
"tsc-alias": "~1.6.1",
|
|
228
231
|
"typescript": "~4.5.5",
|
|
229
232
|
"update-notifier": "~5.1.0",
|
|
230
233
|
"url-loader": "~4.1.1",
|
|
231
234
|
"uuid": "~8.3.2",
|
|
232
|
-
"vite": "~2.8.
|
|
233
|
-
"vitest": "~0.3
|
|
235
|
+
"vite": "~2.8.4",
|
|
236
|
+
"vitest": "~0.5.3",
|
|
234
237
|
"webpack": "~5.65.0",
|
|
235
238
|
"webpack-bundle-analyzer": "~4.5.0",
|
|
236
239
|
"webpack-cli": "~4.9.2",
|