@storm-software/workspace-tools 1.204.0 → 1.206.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 +14 -0
- package/declarations.d.ts +4 -2
- package/index.js +22670 -18654
- package/meta.json +522 -446
- package/package.json +3 -2
- package/src/base/base-executor.js +9 -2
- package/src/base/base-generator.js +9 -2
- package/src/base/index.js +12 -2
- package/src/base/typescript-library-generator.js +3 -0
- package/src/executors/cargo-build/executor.js +9 -2
- package/src/executors/cargo-check/executor.js +9 -2
- package/src/executors/cargo-clippy/executor.js +9 -2
- package/src/executors/cargo-doc/executor.js +9 -2
- package/src/executors/cargo-format/executor.js +9 -2
- package/src/executors/clean-package/executor.js +9 -2
- package/src/executors/rolldown/executor.js +9 -2
- package/src/executors/rollup/executor.js +19813 -15811
- package/src/executors/size-limit/executor.js +9 -2
- package/src/executors/tsup/executor.js +9 -2
- package/src/executors/tsup-browser/executor.js +9 -2
- package/src/executors/tsup-neutral/executor.js +9 -2
- package/src/executors/tsup-node/executor.js +9 -2
- package/src/executors/typia/executor.js +9 -2
- package/src/executors/unbuild/executor.js +9 -2
- package/src/generators/browser-library/generator.js +12 -2
- package/src/generators/config-schema/generator.js +9 -2
- package/src/generators/neutral-library/generator.js +12 -2
- package/src/generators/node-library/generator.js +12 -2
- package/src/generators/preset/generator.js +9 -2
- package/src/generators/release-version/generator.js +9 -2
- package/src/plugins/rust/cargo-toml.d.ts +1 -1
- package/src/plugins/rust/index.js +15 -3
- package/src/plugins/typescript/index.js +15 -3
- package/src/plugins/typescript/project-config.d.ts +1 -1
- package/src/plugins/typescript/tsup.d.ts +3 -0
- package/src/plugins/typescript/tsup.js +232 -0
- package/src/utils/index.js +24 -3
- package/src/utils/project-tags.d.ts +5 -1
- package/src/utils/project-tags.js +15 -1
|
@@ -66914,7 +66914,9 @@ var init_schema = __esm({
|
|
|
66914
66914
|
runtimeVersion: z3.string().trim().regex(
|
|
66915
66915
|
/^(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-]+)*))?$/
|
|
66916
66916
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66917
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66917
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66918
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66919
|
+
),
|
|
66918
66920
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66919
66921
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66920
66922
|
logLevel: z3.enum([
|
|
@@ -67118,7 +67120,7 @@ var init_types2 = __esm({
|
|
|
67118
67120
|
});
|
|
67119
67121
|
|
|
67120
67122
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
67121
|
-
var getLogLevel, getLogLevelLabel;
|
|
67123
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
67122
67124
|
var init_get_log_level = __esm({
|
|
67123
67125
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
67124
67126
|
init_types2();
|
|
@@ -67171,6 +67173,10 @@ var init_get_log_level = __esm({
|
|
|
67171
67173
|
}
|
|
67172
67174
|
return LogLevelLabel.INFO;
|
|
67173
67175
|
};
|
|
67176
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
67177
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
67178
|
+
return logLevel <= LogLevel.DEBUG;
|
|
67179
|
+
};
|
|
67174
67180
|
}
|
|
67175
67181
|
});
|
|
67176
67182
|
|
|
@@ -68070,6 +68076,7 @@ __export(src_exports, {
|
|
|
68070
68076
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
68071
68077
|
getStopwatch: () => getStopwatch,
|
|
68072
68078
|
handleProcess: () => handleProcess,
|
|
68079
|
+
isVerbose: () => isVerbose,
|
|
68073
68080
|
loadStormConfig: () => loadStormConfig,
|
|
68074
68081
|
removeExtension: () => removeExtension,
|
|
68075
68082
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -92196,7 +92196,9 @@ var init_schema = __esm({
|
|
|
92196
92196
|
runtimeVersion: z3.string().trim().regex(
|
|
92197
92197
|
/^(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-]+)*))?$/
|
|
92198
92198
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
92199
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
92199
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
92200
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
92201
|
+
),
|
|
92200
92202
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
92201
92203
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
92202
92204
|
logLevel: z3.enum([
|
|
@@ -92400,7 +92402,7 @@ var init_types2 = __esm({
|
|
|
92400
92402
|
});
|
|
92401
92403
|
|
|
92402
92404
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
92403
|
-
var getLogLevel, getLogLevelLabel;
|
|
92405
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
92404
92406
|
var init_get_log_level = __esm({
|
|
92405
92407
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
92406
92408
|
init_types2();
|
|
@@ -92453,6 +92455,10 @@ var init_get_log_level = __esm({
|
|
|
92453
92455
|
}
|
|
92454
92456
|
return LogLevelLabel.INFO;
|
|
92455
92457
|
};
|
|
92458
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
92459
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
92460
|
+
return logLevel <= LogLevel.DEBUG;
|
|
92461
|
+
};
|
|
92456
92462
|
}
|
|
92457
92463
|
});
|
|
92458
92464
|
|
|
@@ -93352,6 +93358,7 @@ __export(src_exports, {
|
|
|
93352
93358
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
93353
93359
|
getStopwatch: () => getStopwatch,
|
|
93354
93360
|
handleProcess: () => handleProcess,
|
|
93361
|
+
isVerbose: () => isVerbose,
|
|
93355
93362
|
loadStormConfig: () => loadStormConfig,
|
|
93356
93363
|
removeExtension: () => removeExtension,
|
|
93357
93364
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -67751,6 +67758,9 @@ var ProjectTagConstants = {
|
|
|
67751
67758
|
NPM: "npm",
|
|
67752
67759
|
CONTAINER: "container",
|
|
67753
67760
|
CYCLONE: "cyclone"
|
|
67761
|
+
},
|
|
67762
|
+
Plugin: {
|
|
67763
|
+
TAG_ID: "plugin"
|
|
67754
67764
|
}
|
|
67755
67765
|
};
|
|
67756
67766
|
var formatProjectTag = (variant, value2) => {
|
|
@@ -4096,7 +4096,9 @@ var init_schema = __esm({
|
|
|
4096
4096
|
runtimeVersion: z.string().trim().regex(
|
|
4097
4097
|
/^(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-]+)*))?$/
|
|
4098
4098
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
4099
|
-
packageManager: z.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
4099
|
+
packageManager: z.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
4100
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
4101
|
+
),
|
|
4100
4102
|
timezone: z.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
4101
4103
|
locale: z.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
4102
4104
|
logLevel: z.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -67751,6 +67758,9 @@ var ProjectTagConstants = {
|
|
|
67751
67758
|
NPM: "npm",
|
|
67752
67759
|
CONTAINER: "container",
|
|
67753
67760
|
CYCLONE: "cyclone"
|
|
67761
|
+
},
|
|
67762
|
+
Plugin: {
|
|
67763
|
+
TAG_ID: "plugin"
|
|
67754
67764
|
}
|
|
67755
67765
|
};
|
|
67756
67766
|
var formatProjectTag = (variant, value2) => {
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -67751,6 +67758,9 @@ var ProjectTagConstants = {
|
|
|
67751
67758
|
NPM: "npm",
|
|
67752
67759
|
CONTAINER: "container",
|
|
67753
67760
|
CYCLONE: "cyclone"
|
|
67761
|
+
},
|
|
67762
|
+
Plugin: {
|
|
67763
|
+
TAG_ID: "plugin"
|
|
67754
67764
|
}
|
|
67755
67765
|
};
|
|
67756
67766
|
var formatProjectTag = (variant, value2) => {
|
|
@@ -66426,7 +66426,9 @@ var init_schema = __esm({
|
|
|
66426
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
66427
66427
|
/^(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-]+)*))?$/
|
|
66428
66428
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
66429
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
66429
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
66430
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
66431
|
+
),
|
|
66430
66432
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
66431
66433
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
66432
66434
|
logLevel: z3.enum([
|
|
@@ -66630,7 +66632,7 @@ var init_types2 = __esm({
|
|
|
66630
66632
|
});
|
|
66631
66633
|
|
|
66632
66634
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
66633
|
-
var getLogLevel, getLogLevelLabel;
|
|
66635
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
66634
66636
|
var init_get_log_level = __esm({
|
|
66635
66637
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
66636
66638
|
init_types2();
|
|
@@ -66683,6 +66685,10 @@ var init_get_log_level = __esm({
|
|
|
66683
66685
|
}
|
|
66684
66686
|
return LogLevelLabel.INFO;
|
|
66685
66687
|
};
|
|
66688
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
66689
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
66690
|
+
return logLevel <= LogLevel.DEBUG;
|
|
66691
|
+
};
|
|
66686
66692
|
}
|
|
66687
66693
|
});
|
|
66688
66694
|
|
|
@@ -67582,6 +67588,7 @@ __export(src_exports, {
|
|
|
67582
67588
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
67583
67589
|
getStopwatch: () => getStopwatch,
|
|
67584
67590
|
handleProcess: () => handleProcess,
|
|
67591
|
+
isVerbose: () => isVerbose,
|
|
67585
67592
|
loadStormConfig: () => loadStormConfig,
|
|
67586
67593
|
removeExtension: () => removeExtension,
|
|
67587
67594
|
run: () => run,
|
|
@@ -68250,7 +68250,9 @@ var init_schema = __esm({
|
|
|
68250
68250
|
runtimeVersion: z3.string().trim().regex(
|
|
68251
68251
|
/^(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-]+)*))?$/
|
|
68252
68252
|
).default("1.0.0").describe("The global version of the Storm runtime"),
|
|
68253
|
-
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("
|
|
68253
|
+
packageManager: z3.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
68254
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
68255
|
+
),
|
|
68254
68256
|
timezone: z3.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
68255
68257
|
locale: z3.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
68256
68258
|
logLevel: z3.enum([
|
|
@@ -68454,7 +68456,7 @@ var init_types2 = __esm({
|
|
|
68454
68456
|
});
|
|
68455
68457
|
|
|
68456
68458
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
68457
|
-
var getLogLevel, getLogLevelLabel;
|
|
68459
|
+
var getLogLevel, getLogLevelLabel, isVerbose;
|
|
68458
68460
|
var init_get_log_level = __esm({
|
|
68459
68461
|
"packages/config-tools/src/utilities/get-log-level.ts"() {
|
|
68460
68462
|
init_types2();
|
|
@@ -68507,6 +68509,10 @@ var init_get_log_level = __esm({
|
|
|
68507
68509
|
}
|
|
68508
68510
|
return LogLevelLabel.INFO;
|
|
68509
68511
|
};
|
|
68512
|
+
isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
68513
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
68514
|
+
return logLevel <= LogLevel.DEBUG;
|
|
68515
|
+
};
|
|
68510
68516
|
}
|
|
68511
68517
|
});
|
|
68512
68518
|
|
|
@@ -69406,6 +69412,7 @@ __export(src_exports, {
|
|
|
69406
69412
|
getLogLevelLabel: () => getLogLevelLabel,
|
|
69407
69413
|
getStopwatch: () => getStopwatch,
|
|
69408
69414
|
handleProcess: () => handleProcess,
|
|
69415
|
+
isVerbose: () => isVerbose,
|
|
69409
69416
|
loadStormConfig: () => loadStormConfig,
|
|
69410
69417
|
removeExtension: () => removeExtension,
|
|
69411
69418
|
run: () => run,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type CreateDependencies, type CreateNodes } from "@nx/devkit";
|
|
2
|
-
export declare const name = "storm-software/rust
|
|
2
|
+
export declare const name = "storm-software/rust";
|
|
3
3
|
export declare const description = "Plugin for parsing Cargo.toml files";
|
|
4
4
|
export type CargoPluginProfileMap = Record<string, string> & {
|
|
5
5
|
development?: string;
|
|
@@ -114,6 +114,9 @@ var ProjectTagConstants = {
|
|
|
114
114
|
NPM: "npm",
|
|
115
115
|
CONTAINER: "container",
|
|
116
116
|
CYCLONE: "cyclone"
|
|
117
|
+
},
|
|
118
|
+
Plugin: {
|
|
119
|
+
TAG_ID: "plugin"
|
|
117
120
|
}
|
|
118
121
|
};
|
|
119
122
|
var formatProjectTag = (variant, value) => {
|
|
@@ -137,7 +140,13 @@ var addProjectTag = (project, variant, value, options = {
|
|
|
137
140
|
project.tags.push(formatProjectTag(variant, value));
|
|
138
141
|
}
|
|
139
142
|
};
|
|
140
|
-
var
|
|
143
|
+
var addPluginProjectTag = (project, plugin) => {
|
|
144
|
+
project.tags = project.tags ?? [];
|
|
145
|
+
project.tags.push(
|
|
146
|
+
formatProjectTag(ProjectTagConstants.Plugin.TAG_ID, plugin)
|
|
147
|
+
);
|
|
148
|
+
};
|
|
149
|
+
var setDefaultProjectTags = (project, plugin) => {
|
|
141
150
|
project.tags = project.tags ?? [];
|
|
142
151
|
addProjectTag(
|
|
143
152
|
project,
|
|
@@ -157,10 +166,13 @@ var setDefaultProjectTags = (project) => {
|
|
|
157
166
|
project.targets?.build?.options.platform === "node" ? ProjectTagConstants.Platform.NODE : project.targets?.build?.options.platform === "worker" ? ProjectTagConstants.Platform.WORKER : project.targets?.build?.options.platform === "browser" ? ProjectTagConstants.Platform.BROWSER : ProjectTagConstants.Platform.NEUTRAL,
|
|
158
167
|
{ overwrite: false }
|
|
159
168
|
);
|
|
169
|
+
if (plugin) {
|
|
170
|
+
addPluginProjectTag(project, plugin);
|
|
171
|
+
}
|
|
160
172
|
};
|
|
161
173
|
|
|
162
174
|
// packages/workspace-tools/src/plugins/rust/cargo-toml.ts
|
|
163
|
-
var name = "storm-software/rust
|
|
175
|
+
var name = "storm-software/rust";
|
|
164
176
|
var description = "Plugin for parsing Cargo.toml files";
|
|
165
177
|
var DefaultCargoPluginProfileMap = {
|
|
166
178
|
development: "dev",
|
|
@@ -385,7 +397,7 @@ var createNodes = [
|
|
|
385
397
|
ProjectTagConstants.Language.RUST,
|
|
386
398
|
{ overwrite: true }
|
|
387
399
|
);
|
|
388
|
-
setDefaultProjectTags(project);
|
|
400
|
+
setDefaultProjectTags(project, name);
|
|
389
401
|
projects[root] = {
|
|
390
402
|
...project,
|
|
391
403
|
release: {
|
|
@@ -64,6 +64,9 @@ var ProjectTagConstants = {
|
|
|
64
64
|
NPM: "npm",
|
|
65
65
|
CONTAINER: "container",
|
|
66
66
|
CYCLONE: "cyclone"
|
|
67
|
+
},
|
|
68
|
+
Plugin: {
|
|
69
|
+
TAG_ID: "plugin"
|
|
67
70
|
}
|
|
68
71
|
};
|
|
69
72
|
var formatProjectTag = (variant, value) => {
|
|
@@ -100,7 +103,13 @@ var addProjectTag = (project, variant, value, options = {
|
|
|
100
103
|
project.tags.push(formatProjectTag(variant, value));
|
|
101
104
|
}
|
|
102
105
|
};
|
|
103
|
-
var
|
|
106
|
+
var addPluginProjectTag = (project, plugin) => {
|
|
107
|
+
project.tags = project.tags ?? [];
|
|
108
|
+
project.tags.push(
|
|
109
|
+
formatProjectTag(ProjectTagConstants.Plugin.TAG_ID, plugin)
|
|
110
|
+
);
|
|
111
|
+
};
|
|
112
|
+
var setDefaultProjectTags = (project, plugin) => {
|
|
104
113
|
project.tags = project.tags ?? [];
|
|
105
114
|
addProjectTag(
|
|
106
115
|
project,
|
|
@@ -120,10 +129,13 @@ var setDefaultProjectTags = (project) => {
|
|
|
120
129
|
project.targets?.build?.options.platform === "node" ? ProjectTagConstants.Platform.NODE : project.targets?.build?.options.platform === "worker" ? ProjectTagConstants.Platform.WORKER : project.targets?.build?.options.platform === "browser" ? ProjectTagConstants.Platform.BROWSER : ProjectTagConstants.Platform.NEUTRAL,
|
|
121
130
|
{ overwrite: false }
|
|
122
131
|
);
|
|
132
|
+
if (plugin) {
|
|
133
|
+
addPluginProjectTag(project, plugin);
|
|
134
|
+
}
|
|
123
135
|
};
|
|
124
136
|
|
|
125
137
|
// packages/workspace-tools/src/plugins/typescript/project-config.ts
|
|
126
|
-
var name = "storm-software/typescript
|
|
138
|
+
var name = "storm-software/typescript";
|
|
127
139
|
var createNodes = [
|
|
128
140
|
"{project.json,**/project.json}",
|
|
129
141
|
(file, opts = { includeApps: true }, ctx) => {
|
|
@@ -327,7 +339,7 @@ var createNodes = [
|
|
|
327
339
|
ProjectTagConstants.Language.TYPESCRIPT,
|
|
328
340
|
{ overwrite: true }
|
|
329
341
|
);
|
|
330
|
-
setDefaultProjectTags(project);
|
|
342
|
+
setDefaultProjectTags(project, name);
|
|
331
343
|
return project?.name ? {
|
|
332
344
|
projects: {
|
|
333
345
|
[project.name]: {
|