@storm-software/workspace-tools 1.145.0 → 1.146.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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/generators.json +11 -8
- package/index.js +93 -78
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/build-tools/src/utils/generate-package-json.d.ts +1 -0
- package/packages/config/src/define-config.d.ts +0 -1
- package/packages/config/src/schema.d.ts +0 -3
- package/packages/config-tools/src/utilities/run.d.ts +3 -1
- package/packages/workspace-tools/src/base/base-executor.d.ts +5 -2
- package/packages/workspace-tools/src/generators/init/init.d.ts +2 -2
- package/src/base/index.js +25 -17
- package/src/executors/clean-package/executor.js +25 -17
- package/src/executors/rolldown/executor.js +25 -17
- package/src/executors/size-limit/executor.js +25 -17
- package/src/executors/tsup/executor.js +25 -17
- package/src/executors/tsup-browser/executor.js +25 -17
- package/src/executors/tsup-neutral/executor.js +25 -17
- package/src/executors/tsup-node/executor.js +25 -17
- package/src/executors/typia/executor.js +25 -17
- package/src/executors/unbuild/executor.js +25 -17
- package/src/generators/browser-library/generator.js +24 -16
- package/src/generators/config-schema/generator.js +24 -16
- package/src/generators/init/init.js +9 -11
- package/src/generators/neutral-library/generator.js +24 -16
- package/src/generators/node-library/generator.js +24 -16
- package/src/generators/preset/generator.js +81 -70
- package/src/generators/release-version/generator.js +24 -16
- package/src/utils/index.js +24 -16
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/generators.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"name": "storm-workspace",
|
|
4
|
+
"version": "0.0.1",
|
|
2
5
|
"generators": {
|
|
3
6
|
"init": {
|
|
4
|
-
"factory": "./src/generators/init/init#
|
|
7
|
+
"factory": "./src/generators/init/init#initGenerator",
|
|
5
8
|
"schema": "./src/generators/init/schema.json",
|
|
6
9
|
"description": "Initialize the `@storm-software/workspace-tools` plugin.",
|
|
7
|
-
"aliases": [
|
|
8
|
-
"ng-add"
|
|
9
|
-
],
|
|
10
|
+
"aliases": ["ng-add"],
|
|
10
11
|
"internal": true
|
|
11
12
|
},
|
|
12
13
|
"preset": {
|
|
@@ -18,9 +19,7 @@
|
|
|
18
19
|
"node-library": {
|
|
19
20
|
"factory": "./src/generators/node-library/generator",
|
|
20
21
|
"schema": "./src/generators/node-library/schema.json",
|
|
21
|
-
"aliases": [
|
|
22
|
-
"node-lib"
|
|
23
|
-
],
|
|
22
|
+
"aliases": ["node-lib"],
|
|
24
23
|
"x-type": "library",
|
|
25
24
|
"description": "Create a new NodeJs TypeScript library package in the Storm workspace"
|
|
26
25
|
},
|
|
@@ -32,11 +31,15 @@
|
|
|
32
31
|
"neutral-library": {
|
|
33
32
|
"factory": "./src/generators/neutral-library/generator",
|
|
34
33
|
"schema": "./src/generators/neutral-library/schema.json",
|
|
34
|
+
"aliases": ["neutral-lib"],
|
|
35
|
+
"x-type": "library",
|
|
35
36
|
"description": "Create a new Neutral TypeScript library package in the Storm workspace"
|
|
36
37
|
},
|
|
37
38
|
"browser-library": {
|
|
38
39
|
"factory": "./src/generators/browser-library/generator",
|
|
39
40
|
"schema": "./src/generators/browser-library/schema.json",
|
|
41
|
+
"aliases": ["browser-lib"],
|
|
42
|
+
"x-type": "library",
|
|
40
43
|
"description": "Create a new browser TypeScript library package in the Storm workspace"
|
|
41
44
|
},
|
|
42
45
|
"design-tokens": {
|
|
@@ -50,4 +53,4 @@
|
|
|
50
53
|
"description": "The release version generator used in Storm Workspaces"
|
|
51
54
|
}
|
|
52
55
|
}
|
|
53
|
-
}
|
|
56
|
+
}
|
package/index.js
CHANGED
|
@@ -65400,9 +65400,6 @@ var init_schema = __esm({
|
|
|
65400
65400
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
65401
65401
|
),
|
|
65402
65402
|
env: z2.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment of the package"),
|
|
65403
|
-
ci: z2.boolean().default(true).describe(
|
|
65404
|
-
"An indicator specifying if the current environment is a CI environment"
|
|
65405
|
-
),
|
|
65406
65403
|
workspaceRoot: z2.string().trim().default("").describe("The root directory of the workspace"),
|
|
65407
65404
|
packageDirectory: z2.string().trim().optional().describe("The root directory of the package"),
|
|
65408
65405
|
externalPackagePatterns: z2.array(z2.string()).default([]).describe(
|
|
@@ -65529,7 +65526,6 @@ var init_get_default_config = __esm({
|
|
|
65529
65526
|
env: "production",
|
|
65530
65527
|
branch: "main",
|
|
65531
65528
|
organization: "storm-software",
|
|
65532
|
-
ci: true,
|
|
65533
65529
|
configFile: null,
|
|
65534
65530
|
runtimeVersion: "1.0.0",
|
|
65535
65531
|
colors: { ...DEFAULT_COLOR_CONFIG },
|
|
@@ -67436,11 +67432,13 @@ var init_run = __esm({
|
|
|
67436
67432
|
"packages/config-tools/src/utilities/run.ts"() {
|
|
67437
67433
|
import_node_child_process5 = require("node:child_process");
|
|
67438
67434
|
LARGE_BUFFER = 1024 * 1e6;
|
|
67439
|
-
run = (config, command, cwd2 = config.workspaceRoot ?? process.cwd(), stdio = "inherit") => {
|
|
67435
|
+
run = (config, command, cwd2 = config.workspaceRoot ?? process.cwd(), stdio = "inherit", env = process.env) => {
|
|
67440
67436
|
return (0, import_node_child_process5.execSync)(command, {
|
|
67441
67437
|
cwd: cwd2,
|
|
67442
67438
|
env: {
|
|
67443
67439
|
...process.env,
|
|
67440
|
+
...env,
|
|
67441
|
+
CLICOLOR: "true",
|
|
67444
67442
|
FORCE_COLOR: "true"
|
|
67445
67443
|
},
|
|
67446
67444
|
stdio,
|
|
@@ -67682,9 +67680,14 @@ var init_get_env = __esm({
|
|
|
67682
67680
|
runtimeVersion: process.env[`${prefix}RUNTIME_VERSION`],
|
|
67683
67681
|
outputDirectory: correctPaths(process.env[`${prefix}OUTPUT_DIRECTORY`]),
|
|
67684
67682
|
env: process.env[`${prefix}ENV`] ?? process.env.NODE_ENV ?? process.env.ENVIRONMENT,
|
|
67685
|
-
ci:
|
|
67686
|
-
|
|
67687
|
-
|
|
67683
|
+
// ci:
|
|
67684
|
+
// process.env[`${prefix}CI`] !== undefined
|
|
67685
|
+
// ? Boolean(
|
|
67686
|
+
// process.env[`${prefix}CI`] ??
|
|
67687
|
+
// process.env.CI ??
|
|
67688
|
+
// process.env.CONTINUOUS_INTEGRATION
|
|
67689
|
+
// )
|
|
67690
|
+
// : undefined,
|
|
67688
67691
|
repository: process.env[`${prefix}REPOSITORY`],
|
|
67689
67692
|
branch: process.env[`${prefix}BRANCH`],
|
|
67690
67693
|
preid: process.env[`${prefix}PRE_ID`],
|
|
@@ -67885,11 +67888,6 @@ var init_set_env = __esm({
|
|
|
67885
67888
|
process.env.NODE_ENV = config.env;
|
|
67886
67889
|
process.env.ENVIRONMENT = config.env;
|
|
67887
67890
|
}
|
|
67888
|
-
if (config.ci) {
|
|
67889
|
-
process.env[`${prefix}CI`] = String(config.ci);
|
|
67890
|
-
process.env.CI = String(config.ci);
|
|
67891
|
-
process.env.CONTINUOUS_INTEGRATION = String(config.ci);
|
|
67892
|
-
}
|
|
67893
67891
|
if (config.colors?.base?.light || config.colors?.base?.dark) {
|
|
67894
67892
|
for (const key of Object.keys(config.colors)) {
|
|
67895
67893
|
setThemeColorConfigEnv(`${prefix}COLOR_${key}_`, config.colors[key]);
|
|
@@ -68058,7 +68056,7 @@ var init_create_storm_config = __esm({
|
|
|
68058
68056
|
};
|
|
68059
68057
|
createStormConfig = (extensionName, schema, workspaceRoot3) => {
|
|
68060
68058
|
let result;
|
|
68061
|
-
if (!_static_cache) {
|
|
68059
|
+
if (!_static_cache?.data || !_static_cache?.timestamp || _static_cache.timestamp < Date.now() - 3e4) {
|
|
68062
68060
|
const config = getConfigEnv();
|
|
68063
68061
|
const defaultConfig = getDefaultConfig(config, workspaceRoot3);
|
|
68064
68062
|
result = StormConfigSchema.parse({
|
|
@@ -68071,7 +68069,7 @@ var init_create_storm_config = __esm({
|
|
|
68071
68069
|
});
|
|
68072
68070
|
result.workspaceRoot ??= defaultConfig.workspaceRoot ? defaultConfig.workspaceRoot : findWorkspaceRoot(workspaceRoot3);
|
|
68073
68071
|
} else {
|
|
68074
|
-
result = _static_cache;
|
|
68072
|
+
result = _static_cache.data;
|
|
68075
68073
|
}
|
|
68076
68074
|
if (schema && extensionName) {
|
|
68077
68075
|
result.extensions = {
|
|
@@ -68079,7 +68077,10 @@ var init_create_storm_config = __esm({
|
|
|
68079
68077
|
[extensionName]: createConfigExtension(extensionName, schema)
|
|
68080
68078
|
};
|
|
68081
68079
|
}
|
|
68082
|
-
_static_cache =
|
|
68080
|
+
_static_cache = {
|
|
68081
|
+
timestamp: Date.now(),
|
|
68082
|
+
data: result
|
|
68083
|
+
};
|
|
68083
68084
|
return result;
|
|
68084
68085
|
};
|
|
68085
68086
|
createConfigExtension = (extensionName, schema) => {
|
|
@@ -68096,6 +68097,13 @@ var init_create_storm_config = __esm({
|
|
|
68096
68097
|
};
|
|
68097
68098
|
loadStormConfig = async (workspaceRoot3) => {
|
|
68098
68099
|
let config = {};
|
|
68100
|
+
if (_static_cache?.data && _static_cache?.timestamp && _static_cache.timestamp >= Date.now() + 3e4) {
|
|
68101
|
+
writeInfo(
|
|
68102
|
+
`Configuration cache hit - ${_static_cache.timestamp}`,
|
|
68103
|
+
_static_cache.data
|
|
68104
|
+
);
|
|
68105
|
+
return _static_cache.data;
|
|
68106
|
+
}
|
|
68099
68107
|
let _workspaceRoot = workspaceRoot3;
|
|
68100
68108
|
if (!_workspaceRoot) {
|
|
68101
68109
|
_workspaceRoot = findWorkspaceRoot();
|
|
@@ -289321,7 +289329,7 @@ var require_init = __commonJS({
|
|
|
289321
289329
|
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_qpl5nij4hwskga2wbc5djw6zp4/node_modules/@nx/js/src/generators/init/init.js"(exports2) {
|
|
289322
289330
|
"use strict";
|
|
289323
289331
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
289324
|
-
exports2.initGenerator =
|
|
289332
|
+
exports2.initGenerator = initGenerator2;
|
|
289325
289333
|
var devkit_1 = require("@nx/devkit");
|
|
289326
289334
|
var semver_1 = require("@nx/devkit/src/utils/semver");
|
|
289327
289335
|
var package_json_1 = require("nx/src/utils/package-json");
|
|
@@ -289348,7 +289356,7 @@ var require_init = __commonJS({
|
|
|
289348
289356
|
return (0, semver_1.checkAndCleanWithSemver)("typescript", tsVersionInRootPackageJson);
|
|
289349
289357
|
}
|
|
289350
289358
|
}
|
|
289351
|
-
async function
|
|
289359
|
+
async function initGenerator2(tree, schema) {
|
|
289352
289360
|
const tasks = [];
|
|
289353
289361
|
if (!(0, ts_config_1.getRootTsConfigFileName)(tree)) {
|
|
289354
289362
|
(0, devkit_1.generateFiles)(tree, (0, path_1.join)(__dirname, "./files"), ".", {
|
|
@@ -289423,7 +289431,7 @@ var require_init = __commonJS({
|
|
|
289423
289431
|
}
|
|
289424
289432
|
};
|
|
289425
289433
|
}
|
|
289426
|
-
exports2.default =
|
|
289434
|
+
exports2.default = initGenerator2;
|
|
289427
289435
|
}
|
|
289428
289436
|
});
|
|
289429
289437
|
|
|
@@ -605941,6 +605949,7 @@ __export(workspace_tools_exports, {
|
|
|
605941
605949
|
getRegistryVersion: () => getRegistryVersion,
|
|
605942
605950
|
getTypiaTransform: () => getTypiaTransform,
|
|
605943
605951
|
hasProjectTag: () => hasProjectTag,
|
|
605952
|
+
initGenerator: () => initGenerator,
|
|
605944
605953
|
isEqualProjectTag: () => isEqualProjectTag,
|
|
605945
605954
|
isExternal: () => isExternal,
|
|
605946
605955
|
lintStagedVersion: () => lintStagedVersion,
|
|
@@ -605964,7 +605973,6 @@ __export(workspace_tools_exports, {
|
|
|
605964
605973
|
semanticReleaseVersion: () => semanticReleaseVersion,
|
|
605965
605974
|
setDefaultProjectTags: () => setDefaultProjectTags,
|
|
605966
605975
|
sizeLimitExecutorFn: () => sizeLimitExecutorFn,
|
|
605967
|
-
stormInitGenerator: () => stormInitGenerator,
|
|
605968
605976
|
stringifyCargoToml: () => stringifyCargoToml,
|
|
605969
605977
|
swcCliVersion: () => swcCliVersion,
|
|
605970
605978
|
swcCoreVersion: () => swcCoreVersion,
|
|
@@ -606043,7 +606051,7 @@ var applyWorkspaceExecutorTokens = async (option, tokenizerOptions) => {
|
|
|
606043
606051
|
};
|
|
606044
606052
|
|
|
606045
606053
|
// packages/workspace-tools/src/base/base-executor.ts
|
|
606046
|
-
var withRunExecutor = (name, executorFn, executorOptions) => async (_options, context) => {
|
|
606054
|
+
var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_options, context) => {
|
|
606047
606055
|
const {
|
|
606048
606056
|
getStopwatch: getStopwatch2,
|
|
606049
606057
|
writeDebug: writeDebug2,
|
|
@@ -618560,12 +618568,15 @@ var generator_default = withRunGenerator(
|
|
|
618560
618568
|
|
|
618561
618569
|
// packages/workspace-tools/src/generators/init/init.ts
|
|
618562
618570
|
var import_devkit8 = require("@nx/devkit");
|
|
618563
|
-
async function
|
|
618571
|
+
async function initGenerator(tree, schema) {
|
|
618564
618572
|
const task = (0, import_devkit8.addDependenciesToPackageJson)(
|
|
618565
618573
|
tree,
|
|
618566
618574
|
{
|
|
618567
|
-
nx:
|
|
618568
|
-
"@nx/workspace":
|
|
618575
|
+
nx: "^19.5.6",
|
|
618576
|
+
"@nx/workspace": "^19.5.6",
|
|
618577
|
+
"@nx/js": "^19.5.6",
|
|
618578
|
+
"@storm-software/eslint": "latest",
|
|
618579
|
+
"@storm-software/prettier": "latest",
|
|
618569
618580
|
"@storm-software/config-tools": "latest",
|
|
618570
618581
|
"@storm-software/testing-tools": "latest",
|
|
618571
618582
|
"@storm-software/git-tools": "latest",
|
|
@@ -618664,7 +618675,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618664
618675
|
];
|
|
618665
618676
|
json.homepage ??= "https://stormsoftware.com";
|
|
618666
618677
|
json.bugs ??= {
|
|
618667
|
-
url:
|
|
618678
|
+
url: `https://github.com/${options.organization}/${options.name}/issues`,
|
|
618668
618679
|
email: "support@stormsoftware.com"
|
|
618669
618680
|
};
|
|
618670
618681
|
json.license = "Apache-2.0";
|
|
@@ -618673,17 +618684,49 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618673
618684
|
email: "contact@stormsoftware.com",
|
|
618674
618685
|
url: "https://stormsoftware.com"
|
|
618675
618686
|
};
|
|
618687
|
+
json.maintainers ??= [
|
|
618688
|
+
{
|
|
618689
|
+
"name": "Storm Software",
|
|
618690
|
+
"email": "contact@stormsoftware.com",
|
|
618691
|
+
"url": "https://stormsoftware.com"
|
|
618692
|
+
},
|
|
618693
|
+
{
|
|
618694
|
+
"name": "Pat Sullivan",
|
|
618695
|
+
"email": "pat@stormsoftware.com",
|
|
618696
|
+
"url": "https://patsullivan.org"
|
|
618697
|
+
}
|
|
618698
|
+
];
|
|
618676
618699
|
json.funding ??= {
|
|
618677
618700
|
type: "github",
|
|
618678
618701
|
url: "https://github.com/sponsors/storm-software"
|
|
618679
618702
|
};
|
|
618680
618703
|
json.namespace ??= `@${options.namespace}`;
|
|
618681
618704
|
json.description ??= options.description;
|
|
618682
|
-
options.repositoryUrl ??= `https://github.com/${options.organization}/${options.name}
|
|
618705
|
+
options.repositoryUrl ??= `https://github.com/${options.organization}/${options.name}`;
|
|
618683
618706
|
json.repository ??= {
|
|
618684
618707
|
type: "github",
|
|
618685
618708
|
url: `${options.repositoryUrl}.git`
|
|
618686
618709
|
};
|
|
618710
|
+
json.packageManager ??= "pnpm@9.6.0";
|
|
618711
|
+
json.engines ??= {
|
|
618712
|
+
"node": ">=20.11.0",
|
|
618713
|
+
"pnpm": ">=9.6.0"
|
|
618714
|
+
};
|
|
618715
|
+
json.devEngines ??= {
|
|
618716
|
+
"node": "20.x || 21.x"
|
|
618717
|
+
};
|
|
618718
|
+
json.nx ??= {
|
|
618719
|
+
"includedScripts": [
|
|
618720
|
+
"lint-ls",
|
|
618721
|
+
"lint",
|
|
618722
|
+
"format",
|
|
618723
|
+
"format-readme",
|
|
618724
|
+
"format-prettier",
|
|
618725
|
+
"format-toml",
|
|
618726
|
+
"commit",
|
|
618727
|
+
"release"
|
|
618728
|
+
]
|
|
618729
|
+
};
|
|
618687
618730
|
json.scripts.adr = "pnpm log4brains adr new";
|
|
618688
618731
|
json.scripts["adr-preview"] = "pnpm log4brains preview";
|
|
618689
618732
|
json.scripts.prepare = "pnpm add lefthook -w && pnpm lefthook install";
|
|
@@ -618740,25 +618783,6 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618740
618783
|
node: `>=${nodeVersion}`,
|
|
618741
618784
|
pnpm: `>=${pnpmVersion}`
|
|
618742
618785
|
};
|
|
618743
|
-
if (options.includeApps) {
|
|
618744
|
-
json.bundlewatch = {
|
|
618745
|
-
files: [
|
|
618746
|
-
{
|
|
618747
|
-
path: "dist/*/*.js",
|
|
618748
|
-
maxSize: "200kB"
|
|
618749
|
-
}
|
|
618750
|
-
],
|
|
618751
|
-
ci: {
|
|
618752
|
-
trackBranches: ["main", "alpha", "beta"]
|
|
618753
|
-
}
|
|
618754
|
-
};
|
|
618755
|
-
json.nextBundleAnalysis = {
|
|
618756
|
-
buildOutputDirectory: "dist/apps/web/app/.next"
|
|
618757
|
-
};
|
|
618758
|
-
}
|
|
618759
|
-
json.nx = {
|
|
618760
|
-
includedScripts: ["lint", "format"]
|
|
618761
|
-
};
|
|
618762
618786
|
return json;
|
|
618763
618787
|
});
|
|
618764
618788
|
(0, import_devkit10.generateFiles)(tree, path7.join(__dirname, "files"), projectRoot, {
|
|
@@ -618768,15 +618792,15 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618768
618792
|
});
|
|
618769
618793
|
await (0, import_devkit10.formatFiles)(tree);
|
|
618770
618794
|
let dependencies = {
|
|
618771
|
-
"@commitlint/cli": "19.2.1",
|
|
618772
618795
|
"@ls-lint/ls-lint": "2.2.3",
|
|
618773
618796
|
"@ltd/j-toml": "1.38.0",
|
|
618774
|
-
"@
|
|
618775
|
-
"@nx/
|
|
618776
|
-
"@nx/
|
|
618777
|
-
"@nx/
|
|
618778
|
-
"@nx/
|
|
618779
|
-
"@nx/
|
|
618797
|
+
"@microsoft/tsdoc": "0.15.0",
|
|
618798
|
+
"@nx/devkit": "^19.5.3",
|
|
618799
|
+
"@nx/esbuild": "19.5.3",
|
|
618800
|
+
"@nx/eslint-plugin": ">=19.5.3",
|
|
618801
|
+
"@nx/js": "^19.5.3",
|
|
618802
|
+
"@nx/plugin": "19.5.3",
|
|
618803
|
+
"@nx/workspace": "^19.5.3",
|
|
618780
618804
|
"@storm-software/config": "latest",
|
|
618781
618805
|
"@storm-software/config-tools": "latest",
|
|
618782
618806
|
"@storm-software/git-tools": "latest",
|
|
@@ -618786,44 +618810,35 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618786
618810
|
"@storm-software/eslint": "latest",
|
|
618787
618811
|
"@storm-software/eslint-plugin": "latest",
|
|
618788
618812
|
"@storm-software/prettier": "latest",
|
|
618789
|
-
"@swc-node/register": "1.9.0",
|
|
618790
|
-
"@swc/cli": "0.3.12",
|
|
618791
|
-
"@swc/core": "1.4.12",
|
|
618792
|
-
"@swc/helpers": "0.5.8",
|
|
618793
|
-
"@swc/wasm": "1.4.12",
|
|
618794
618813
|
"@taplo/cli": "0.7.0",
|
|
618795
618814
|
"@types/jest": "29.5.12",
|
|
618796
|
-
"@types/node": "20.
|
|
618797
|
-
"conventional-changelog-conventionalcommits": "
|
|
618798
|
-
"
|
|
618815
|
+
"@types/node": "^20.14.10",
|
|
618816
|
+
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
618817
|
+
"copyfiles": "2.4.1",
|
|
618818
|
+
"esbuild": "0.21.5",
|
|
618799
618819
|
"esbuild-register": "3.5.0",
|
|
618800
|
-
"eslint": "
|
|
618801
|
-
"eslint-config-storm-software": "latest",
|
|
618802
|
-
"eslint-plugin-import": "^2.29.1",
|
|
618803
|
-
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
618804
|
-
"eslint-plugin-react": "^7.34.1",
|
|
618805
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
618820
|
+
"eslint": "9.5.0",
|
|
618806
618821
|
"jest": "29.7.0",
|
|
618807
618822
|
"jest-environment-jsdom": "29.7.0",
|
|
618808
618823
|
"jest-environment-node": "29.7.0",
|
|
618809
|
-
"
|
|
618810
|
-
"
|
|
618811
|
-
"
|
|
618812
|
-
"
|
|
618813
|
-
"
|
|
618824
|
+
"knip": "5.25.2",
|
|
618825
|
+
"lefthook": "1.6.18",
|
|
618826
|
+
"nx": "^19.5.3",
|
|
618827
|
+
"prettier": "3.3.2",
|
|
618828
|
+
"prettier-plugin-prisma": "5.0.0",
|
|
618829
|
+
"rimraf": "5.0.7",
|
|
618830
|
+
"sherif": "0.10.0",
|
|
618831
|
+
"ts-jest": "29.1.5",
|
|
618814
618832
|
"ts-loader": "9.5.1",
|
|
618815
618833
|
"ts-node": "10.9.2",
|
|
618816
618834
|
"tsconfig-paths": "4.2.0",
|
|
618817
|
-
"tslib": "2.6.
|
|
618818
|
-
"typescript":
|
|
618819
|
-
"verdaccio": "5.
|
|
618820
|
-
"knip": "5.25.2",
|
|
618821
|
-
"sherif": "0.10.0"
|
|
618835
|
+
"tslib": "2.6.3",
|
|
618836
|
+
"typescript": "5.5.3",
|
|
618837
|
+
"verdaccio": "5.31.1"
|
|
618822
618838
|
};
|
|
618823
618839
|
if (options.includeApps) {
|
|
618824
618840
|
dependencies = {
|
|
618825
618841
|
...dependencies,
|
|
618826
|
-
bundlewatch: "latest",
|
|
618827
618842
|
react: "latest",
|
|
618828
618843
|
"react-dom": "latest",
|
|
618829
618844
|
storybook: "latest",
|
|
@@ -619904,6 +619919,7 @@ var setDefaultProjectTags = (project) => {
|
|
|
619904
619919
|
getRegistryVersion,
|
|
619905
619920
|
getTypiaTransform,
|
|
619906
619921
|
hasProjectTag,
|
|
619922
|
+
initGenerator,
|
|
619907
619923
|
isEqualProjectTag,
|
|
619908
619924
|
isExternal,
|
|
619909
619925
|
lintStagedVersion,
|
|
@@ -619927,7 +619943,6 @@ var setDefaultProjectTags = (project) => {
|
|
|
619927
619943
|
semanticReleaseVersion,
|
|
619928
619944
|
setDefaultProjectTags,
|
|
619929
619945
|
sizeLimitExecutorFn,
|
|
619930
|
-
stormInitGenerator,
|
|
619931
619946
|
stringifyCargoToml,
|
|
619932
619947
|
swcCliVersion,
|
|
619933
619948
|
swcCoreVersion,
|