@storm-software/workspace-tools 1.34.1 → 1.34.2
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/index.js +14 -15
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +14 -15
- package/src/executors/design-tokens/executor.js +14 -15
- package/src/executors/tsup/executor.js +14 -15
- package/src/executors/tsup-browser/executor.js +14 -15
- package/src/executors/tsup-neutral/executor.js +14 -15
- package/src/executors/tsup-node/executor.js +14 -15
- package/src/generators/browser-library/generator.js +14 -15
- package/src/generators/config-schema/generator.js +14 -15
- package/src/generators/neutral-library/generator.js +14 -15
- package/src/generators/node-library/generator.js +14 -15
- package/src/generators/preset/generator.js +14 -15
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -11771,7 +11771,7 @@ var ColorConfigSchema = objectType({
|
|
|
11771
11771
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
11772
11772
|
}).describe("Colors used for various workspace elements");
|
|
11773
11773
|
var StormConfigSchema = objectType({
|
|
11774
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
11774
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
11775
11775
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
11776
11776
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
11777
11777
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -11824,7 +11824,7 @@ var DefaultColorConfig = {
|
|
|
11824
11824
|
fatal: "#7d1a1a"
|
|
11825
11825
|
};
|
|
11826
11826
|
var DefaultStormConfig = {
|
|
11827
|
-
name: "storm
|
|
11827
|
+
name: "storm",
|
|
11828
11828
|
namespace: "storm-software",
|
|
11829
11829
|
license: "Apache License 2.0",
|
|
11830
11830
|
homepage: "https://stormsoftware.org",
|
|
@@ -11864,19 +11864,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
11864
11864
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
11865
11865
|
}
|
|
11866
11866
|
}
|
|
11867
|
-
return StormConfigSchema.parse(
|
|
11868
|
-
|
|
11869
|
-
|
|
11870
|
-
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
11877
|
-
|
|
11878
|
-
|
|
11879
|
-
);
|
|
11867
|
+
return StormConfigSchema.parse({
|
|
11868
|
+
...config,
|
|
11869
|
+
...DefaultStormConfig,
|
|
11870
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
11871
|
+
workspaceRoot,
|
|
11872
|
+
name,
|
|
11873
|
+
namespace,
|
|
11874
|
+
repository,
|
|
11875
|
+
license: license ?? DefaultStormConfig.license,
|
|
11876
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
11877
|
+
extensions: {}
|
|
11878
|
+
});
|
|
11880
11879
|
};
|
|
11881
11880
|
|
|
11882
11881
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -65140,7 +65140,7 @@ var ColorConfigSchema = objectType({
|
|
|
65140
65140
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
65141
65141
|
}).describe("Colors used for various workspace elements");
|
|
65142
65142
|
var StormConfigSchema = objectType({
|
|
65143
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
65143
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
65144
65144
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
65145
65145
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
65146
65146
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -65193,7 +65193,7 @@ var DefaultColorConfig = {
|
|
|
65193
65193
|
fatal: "#7d1a1a"
|
|
65194
65194
|
};
|
|
65195
65195
|
var DefaultStormConfig = {
|
|
65196
|
-
name: "storm
|
|
65196
|
+
name: "storm",
|
|
65197
65197
|
namespace: "storm-software",
|
|
65198
65198
|
license: "Apache License 2.0",
|
|
65199
65199
|
homepage: "https://stormsoftware.org",
|
|
@@ -65233,19 +65233,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
65233
65233
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
65234
65234
|
}
|
|
65235
65235
|
}
|
|
65236
|
-
return StormConfigSchema.parse(
|
|
65237
|
-
|
|
65238
|
-
|
|
65239
|
-
|
|
65240
|
-
|
|
65241
|
-
|
|
65242
|
-
|
|
65243
|
-
|
|
65244
|
-
|
|
65245
|
-
|
|
65246
|
-
|
|
65247
|
-
|
|
65248
|
-
);
|
|
65236
|
+
return StormConfigSchema.parse({
|
|
65237
|
+
...config,
|
|
65238
|
+
...DefaultStormConfig,
|
|
65239
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
65240
|
+
workspaceRoot,
|
|
65241
|
+
name,
|
|
65242
|
+
namespace,
|
|
65243
|
+
repository,
|
|
65244
|
+
license: license ?? DefaultStormConfig.license,
|
|
65245
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
65246
|
+
extensions: {}
|
|
65247
|
+
});
|
|
65249
65248
|
};
|
|
65250
65249
|
|
|
65251
65250
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -116170,7 +116170,7 @@ var ColorConfigSchema = objectType({
|
|
|
116170
116170
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
116171
116171
|
}).describe("Colors used for various workspace elements");
|
|
116172
116172
|
var StormConfigSchema = objectType({
|
|
116173
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
116173
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
116174
116174
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
116175
116175
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
116176
116176
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -116223,7 +116223,7 @@ var DefaultColorConfig = {
|
|
|
116223
116223
|
fatal: "#7d1a1a"
|
|
116224
116224
|
};
|
|
116225
116225
|
var DefaultStormConfig = {
|
|
116226
|
-
name: "storm
|
|
116226
|
+
name: "storm",
|
|
116227
116227
|
namespace: "storm-software",
|
|
116228
116228
|
license: "Apache License 2.0",
|
|
116229
116229
|
homepage: "https://stormsoftware.org",
|
|
@@ -116263,19 +116263,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
116263
116263
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
116264
116264
|
}
|
|
116265
116265
|
}
|
|
116266
|
-
return StormConfigSchema.parse(
|
|
116267
|
-
|
|
116268
|
-
|
|
116269
|
-
|
|
116270
|
-
|
|
116271
|
-
|
|
116272
|
-
|
|
116273
|
-
|
|
116274
|
-
|
|
116275
|
-
|
|
116276
|
-
|
|
116277
|
-
|
|
116278
|
-
);
|
|
116266
|
+
return StormConfigSchema.parse({
|
|
116267
|
+
...config,
|
|
116268
|
+
...DefaultStormConfig,
|
|
116269
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
116270
|
+
workspaceRoot,
|
|
116271
|
+
name,
|
|
116272
|
+
namespace,
|
|
116273
|
+
repository,
|
|
116274
|
+
license: license ?? DefaultStormConfig.license,
|
|
116275
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
116276
|
+
extensions: {}
|
|
116277
|
+
});
|
|
116279
116278
|
};
|
|
116280
116279
|
|
|
116281
116280
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -109936,7 +109936,7 @@ var ColorConfigSchema = objectType({
|
|
|
109936
109936
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
109937
109937
|
}).describe("Colors used for various workspace elements");
|
|
109938
109938
|
var StormConfigSchema = objectType({
|
|
109939
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
109939
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
109940
109940
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
109941
109941
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
109942
109942
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -109989,7 +109989,7 @@ var DefaultColorConfig = {
|
|
|
109989
109989
|
fatal: "#7d1a1a"
|
|
109990
109990
|
};
|
|
109991
109991
|
var DefaultStormConfig = {
|
|
109992
|
-
name: "storm
|
|
109992
|
+
name: "storm",
|
|
109993
109993
|
namespace: "storm-software",
|
|
109994
109994
|
license: "Apache License 2.0",
|
|
109995
109995
|
homepage: "https://stormsoftware.org",
|
|
@@ -110029,19 +110029,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
110029
110029
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
110030
110030
|
}
|
|
110031
110031
|
}
|
|
110032
|
-
return StormConfigSchema.parse(
|
|
110033
|
-
|
|
110034
|
-
|
|
110035
|
-
|
|
110036
|
-
|
|
110037
|
-
|
|
110038
|
-
|
|
110039
|
-
|
|
110040
|
-
|
|
110041
|
-
|
|
110042
|
-
|
|
110043
|
-
|
|
110044
|
-
);
|
|
110032
|
+
return StormConfigSchema.parse({
|
|
110033
|
+
...config,
|
|
110034
|
+
...DefaultStormConfig,
|
|
110035
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
110036
|
+
workspaceRoot,
|
|
110037
|
+
name,
|
|
110038
|
+
namespace,
|
|
110039
|
+
repository,
|
|
110040
|
+
license: license ?? DefaultStormConfig.license,
|
|
110041
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
110042
|
+
extensions: {}
|
|
110043
|
+
});
|
|
110045
110044
|
};
|
|
110046
110045
|
|
|
110047
110046
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -109936,7 +109936,7 @@ var ColorConfigSchema = objectType({
|
|
|
109936
109936
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
109937
109937
|
}).describe("Colors used for various workspace elements");
|
|
109938
109938
|
var StormConfigSchema = objectType({
|
|
109939
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
109939
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
109940
109940
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
109941
109941
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
109942
109942
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -109989,7 +109989,7 @@ var DefaultColorConfig = {
|
|
|
109989
109989
|
fatal: "#7d1a1a"
|
|
109990
109990
|
};
|
|
109991
109991
|
var DefaultStormConfig = {
|
|
109992
|
-
name: "storm
|
|
109992
|
+
name: "storm",
|
|
109993
109993
|
namespace: "storm-software",
|
|
109994
109994
|
license: "Apache License 2.0",
|
|
109995
109995
|
homepage: "https://stormsoftware.org",
|
|
@@ -110029,19 +110029,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
110029
110029
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
110030
110030
|
}
|
|
110031
110031
|
}
|
|
110032
|
-
return StormConfigSchema.parse(
|
|
110033
|
-
|
|
110034
|
-
|
|
110035
|
-
|
|
110036
|
-
|
|
110037
|
-
|
|
110038
|
-
|
|
110039
|
-
|
|
110040
|
-
|
|
110041
|
-
|
|
110042
|
-
|
|
110043
|
-
|
|
110044
|
-
);
|
|
110032
|
+
return StormConfigSchema.parse({
|
|
110033
|
+
...config,
|
|
110034
|
+
...DefaultStormConfig,
|
|
110035
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
110036
|
+
workspaceRoot,
|
|
110037
|
+
name,
|
|
110038
|
+
namespace,
|
|
110039
|
+
repository,
|
|
110040
|
+
license: license ?? DefaultStormConfig.license,
|
|
110041
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
110042
|
+
extensions: {}
|
|
110043
|
+
});
|
|
110045
110044
|
};
|
|
110046
110045
|
|
|
110047
110046
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -109936,7 +109936,7 @@ var ColorConfigSchema = objectType({
|
|
|
109936
109936
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
109937
109937
|
}).describe("Colors used for various workspace elements");
|
|
109938
109938
|
var StormConfigSchema = objectType({
|
|
109939
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
109939
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
109940
109940
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
109941
109941
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
109942
109942
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -109989,7 +109989,7 @@ var DefaultColorConfig = {
|
|
|
109989
109989
|
fatal: "#7d1a1a"
|
|
109990
109990
|
};
|
|
109991
109991
|
var DefaultStormConfig = {
|
|
109992
|
-
name: "storm
|
|
109992
|
+
name: "storm",
|
|
109993
109993
|
namespace: "storm-software",
|
|
109994
109994
|
license: "Apache License 2.0",
|
|
109995
109995
|
homepage: "https://stormsoftware.org",
|
|
@@ -110029,19 +110029,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
110029
110029
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
110030
110030
|
}
|
|
110031
110031
|
}
|
|
110032
|
-
return StormConfigSchema.parse(
|
|
110033
|
-
|
|
110034
|
-
|
|
110035
|
-
|
|
110036
|
-
|
|
110037
|
-
|
|
110038
|
-
|
|
110039
|
-
|
|
110040
|
-
|
|
110041
|
-
|
|
110042
|
-
|
|
110043
|
-
|
|
110044
|
-
);
|
|
110032
|
+
return StormConfigSchema.parse({
|
|
110033
|
+
...config,
|
|
110034
|
+
...DefaultStormConfig,
|
|
110035
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
110036
|
+
workspaceRoot,
|
|
110037
|
+
name,
|
|
110038
|
+
namespace,
|
|
110039
|
+
repository,
|
|
110040
|
+
license: license ?? DefaultStormConfig.license,
|
|
110041
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
110042
|
+
extensions: {}
|
|
110043
|
+
});
|
|
110045
110044
|
};
|
|
110046
110045
|
|
|
110047
110046
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -47217,7 +47217,7 @@ var ColorConfigSchema = objectType({
|
|
|
47217
47217
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
47218
47218
|
}).describe("Colors used for various workspace elements");
|
|
47219
47219
|
var StormConfigSchema = objectType({
|
|
47220
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
47220
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
47221
47221
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
47222
47222
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
47223
47223
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -47270,7 +47270,7 @@ var DefaultColorConfig = {
|
|
|
47270
47270
|
fatal: "#7d1a1a"
|
|
47271
47271
|
};
|
|
47272
47272
|
var DefaultStormConfig = {
|
|
47273
|
-
name: "storm
|
|
47273
|
+
name: "storm",
|
|
47274
47274
|
namespace: "storm-software",
|
|
47275
47275
|
license: "Apache License 2.0",
|
|
47276
47276
|
homepage: "https://stormsoftware.org",
|
|
@@ -47310,19 +47310,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
47310
47310
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
47311
47311
|
}
|
|
47312
47312
|
}
|
|
47313
|
-
return StormConfigSchema.parse(
|
|
47314
|
-
|
|
47315
|
-
|
|
47316
|
-
|
|
47317
|
-
|
|
47318
|
-
|
|
47319
|
-
|
|
47320
|
-
|
|
47321
|
-
|
|
47322
|
-
|
|
47323
|
-
|
|
47324
|
-
|
|
47325
|
-
);
|
|
47313
|
+
return StormConfigSchema.parse({
|
|
47314
|
+
...config,
|
|
47315
|
+
...DefaultStormConfig,
|
|
47316
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
47317
|
+
workspaceRoot,
|
|
47318
|
+
name,
|
|
47319
|
+
namespace,
|
|
47320
|
+
repository,
|
|
47321
|
+
license: license ?? DefaultStormConfig.license,
|
|
47322
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
47323
|
+
extensions: {}
|
|
47324
|
+
});
|
|
47326
47325
|
};
|
|
47327
47326
|
|
|
47328
47327
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -29975,7 +29975,7 @@ var ColorConfigSchema = objectType({
|
|
|
29975
29975
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
29976
29976
|
}).describe("Colors used for various workspace elements");
|
|
29977
29977
|
var StormConfigSchema = objectType({
|
|
29978
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
29978
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
29979
29979
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
29980
29980
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
29981
29981
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -30028,7 +30028,7 @@ var DefaultColorConfig = {
|
|
|
30028
30028
|
fatal: "#7d1a1a"
|
|
30029
30029
|
};
|
|
30030
30030
|
var DefaultStormConfig = {
|
|
30031
|
-
name: "storm
|
|
30031
|
+
name: "storm",
|
|
30032
30032
|
namespace: "storm-software",
|
|
30033
30033
|
license: "Apache License 2.0",
|
|
30034
30034
|
homepage: "https://stormsoftware.org",
|
|
@@ -30068,19 +30068,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
30068
30068
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
30069
30069
|
}
|
|
30070
30070
|
}
|
|
30071
|
-
return StormConfigSchema.parse(
|
|
30072
|
-
|
|
30073
|
-
|
|
30074
|
-
|
|
30075
|
-
|
|
30076
|
-
|
|
30077
|
-
|
|
30078
|
-
|
|
30079
|
-
|
|
30080
|
-
|
|
30081
|
-
|
|
30082
|
-
|
|
30083
|
-
);
|
|
30071
|
+
return StormConfigSchema.parse({
|
|
30072
|
+
...config,
|
|
30073
|
+
...DefaultStormConfig,
|
|
30074
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
30075
|
+
workspaceRoot,
|
|
30076
|
+
name,
|
|
30077
|
+
namespace,
|
|
30078
|
+
repository,
|
|
30079
|
+
license: license ?? DefaultStormConfig.license,
|
|
30080
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
30081
|
+
extensions: {}
|
|
30082
|
+
});
|
|
30084
30083
|
};
|
|
30085
30084
|
|
|
30086
30085
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -47217,7 +47217,7 @@ var ColorConfigSchema = objectType({
|
|
|
47217
47217
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
47218
47218
|
}).describe("Colors used for various workspace elements");
|
|
47219
47219
|
var StormConfigSchema = objectType({
|
|
47220
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
47220
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
47221
47221
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
47222
47222
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
47223
47223
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -47270,7 +47270,7 @@ var DefaultColorConfig = {
|
|
|
47270
47270
|
fatal: "#7d1a1a"
|
|
47271
47271
|
};
|
|
47272
47272
|
var DefaultStormConfig = {
|
|
47273
|
-
name: "storm
|
|
47273
|
+
name: "storm",
|
|
47274
47274
|
namespace: "storm-software",
|
|
47275
47275
|
license: "Apache License 2.0",
|
|
47276
47276
|
homepage: "https://stormsoftware.org",
|
|
@@ -47310,19 +47310,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
47310
47310
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
47311
47311
|
}
|
|
47312
47312
|
}
|
|
47313
|
-
return StormConfigSchema.parse(
|
|
47314
|
-
|
|
47315
|
-
|
|
47316
|
-
|
|
47317
|
-
|
|
47318
|
-
|
|
47319
|
-
|
|
47320
|
-
|
|
47321
|
-
|
|
47322
|
-
|
|
47323
|
-
|
|
47324
|
-
|
|
47325
|
-
);
|
|
47313
|
+
return StormConfigSchema.parse({
|
|
47314
|
+
...config,
|
|
47315
|
+
...DefaultStormConfig,
|
|
47316
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
47317
|
+
workspaceRoot,
|
|
47318
|
+
name,
|
|
47319
|
+
namespace,
|
|
47320
|
+
repository,
|
|
47321
|
+
license: license ?? DefaultStormConfig.license,
|
|
47322
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
47323
|
+
extensions: {}
|
|
47324
|
+
});
|
|
47326
47325
|
};
|
|
47327
47326
|
|
|
47328
47327
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -47217,7 +47217,7 @@ var ColorConfigSchema = objectType({
|
|
|
47217
47217
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
47218
47218
|
}).describe("Colors used for various workspace elements");
|
|
47219
47219
|
var StormConfigSchema = objectType({
|
|
47220
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
47220
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
47221
47221
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
47222
47222
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
47223
47223
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -47270,7 +47270,7 @@ var DefaultColorConfig = {
|
|
|
47270
47270
|
fatal: "#7d1a1a"
|
|
47271
47271
|
};
|
|
47272
47272
|
var DefaultStormConfig = {
|
|
47273
|
-
name: "storm
|
|
47273
|
+
name: "storm",
|
|
47274
47274
|
namespace: "storm-software",
|
|
47275
47275
|
license: "Apache License 2.0",
|
|
47276
47276
|
homepage: "https://stormsoftware.org",
|
|
@@ -47310,19 +47310,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
47310
47310
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
47311
47311
|
}
|
|
47312
47312
|
}
|
|
47313
|
-
return StormConfigSchema.parse(
|
|
47314
|
-
|
|
47315
|
-
|
|
47316
|
-
|
|
47317
|
-
|
|
47318
|
-
|
|
47319
|
-
|
|
47320
|
-
|
|
47321
|
-
|
|
47322
|
-
|
|
47323
|
-
|
|
47324
|
-
|
|
47325
|
-
);
|
|
47313
|
+
return StormConfigSchema.parse({
|
|
47314
|
+
...config,
|
|
47315
|
+
...DefaultStormConfig,
|
|
47316
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
47317
|
+
workspaceRoot,
|
|
47318
|
+
name,
|
|
47319
|
+
namespace,
|
|
47320
|
+
repository,
|
|
47321
|
+
license: license ?? DefaultStormConfig.license,
|
|
47322
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
47323
|
+
extensions: {}
|
|
47324
|
+
});
|
|
47326
47325
|
};
|
|
47327
47326
|
|
|
47328
47327
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
@@ -29976,7 +29976,7 @@ var ColorConfigSchema = objectType({
|
|
|
29976
29976
|
fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
|
|
29977
29977
|
}).describe("Colors used for various workspace elements");
|
|
29978
29978
|
var StormConfigSchema = objectType({
|
|
29979
|
-
name: stringType().trim().toLowerCase().describe("The name of the package"),
|
|
29979
|
+
name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
|
|
29980
29980
|
namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
|
|
29981
29981
|
organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
|
|
29982
29982
|
repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -30029,7 +30029,7 @@ var DefaultColorConfig = {
|
|
|
30029
30029
|
fatal: "#7d1a1a"
|
|
30030
30030
|
};
|
|
30031
30031
|
var DefaultStormConfig = {
|
|
30032
|
-
name: "storm
|
|
30032
|
+
name: "storm",
|
|
30033
30033
|
namespace: "storm-software",
|
|
30034
30034
|
license: "Apache License 2.0",
|
|
30035
30035
|
homepage: "https://stormsoftware.org",
|
|
@@ -30069,19 +30069,18 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
30069
30069
|
packageJson.homepage && (homepage = packageJson.homepage);
|
|
30070
30070
|
}
|
|
30071
30071
|
}
|
|
30072
|
-
return StormConfigSchema.parse(
|
|
30073
|
-
|
|
30074
|
-
|
|
30075
|
-
|
|
30076
|
-
|
|
30077
|
-
|
|
30078
|
-
|
|
30079
|
-
|
|
30080
|
-
|
|
30081
|
-
|
|
30082
|
-
|
|
30083
|
-
|
|
30084
|
-
);
|
|
30072
|
+
return StormConfigSchema.parse({
|
|
30073
|
+
...config,
|
|
30074
|
+
...DefaultStormConfig,
|
|
30075
|
+
colors: { ...config.colors, ...DefaultColorConfig },
|
|
30076
|
+
workspaceRoot,
|
|
30077
|
+
name,
|
|
30078
|
+
namespace,
|
|
30079
|
+
repository,
|
|
30080
|
+
license: license ?? DefaultStormConfig.license,
|
|
30081
|
+
homepage: homepage ?? DefaultStormConfig.homepage,
|
|
30082
|
+
extensions: {}
|
|
30083
|
+
});
|
|
30085
30084
|
};
|
|
30086
30085
|
|
|
30087
30086
|
// packages/config-tools/src/utilities/get-log-level.ts
|