@storm-software/workspace-tools 1.17.1 → 1.18.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 +8 -0
- package/README.md +42 -1
- package/executors.json +12 -1
- package/generators.json +1 -1
- package/index.js +7096 -374
- package/meta.json +1 -1
- package/package.json +3 -1
- package/src/executors/tsup/executor.js +163 -115
- package/src/executors/tsup/get-config.js +3 -0
- package/src/executors/tsup/schema.json +1 -0
- package/src/executors/tsup-neutral/schema.d.ts +8 -0
- package/src/executors/tsup-neutral/schema.json +19 -0
- package/src/executors/tsup-node/schema.d.ts +6 -0
- package/src/executors/tsup-node/schema.json +10 -0
- package/src/generators/node-library/generator.js +6832 -91
- package/src/generators/preset/generator.js +6984 -219
- package/src/utils/index.js +40 -0
|
@@ -70671,6 +70671,7 @@ function modernConfig({
|
|
|
70671
70671
|
tsdocMetadata,
|
|
70672
70672
|
sourcemap: debug,
|
|
70673
70673
|
clean: false,
|
|
70674
|
+
tsconfigDecoratorMetadata: true,
|
|
70674
70675
|
plugins,
|
|
70675
70676
|
outExtension
|
|
70676
70677
|
};
|
|
@@ -70726,6 +70727,7 @@ function legacyConfig({
|
|
|
70726
70727
|
tsdocMetadata: false,
|
|
70727
70728
|
sourcemap: debug,
|
|
70728
70729
|
clean: false,
|
|
70730
|
+
tsconfigDecoratorMetadata: true,
|
|
70729
70731
|
plugins,
|
|
70730
70732
|
outExtension
|
|
70731
70733
|
};
|
|
@@ -70783,6 +70785,7 @@ function workerConfig({
|
|
|
70783
70785
|
tsdocMetadata,
|
|
70784
70786
|
sourcemap: debug,
|
|
70785
70787
|
clean: false,
|
|
70788
|
+
tsconfigDecoratorMetadata: true,
|
|
70786
70789
|
plugins,
|
|
70787
70790
|
outExtension
|
|
70788
70791
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"extends": "../tsup/schema.json",
|
|
4
|
+
"version": 2,
|
|
5
|
+
"title": "Neutral TypeScript Builder",
|
|
6
|
+
"description": "Runs a neutral platform TypeScript build",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"transports": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"description": "",
|
|
12
|
+
"items": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"default": ["pino-pretty"]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"required": []
|
|
19
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"extends": "../tsup-neutral/schema.json",
|
|
4
|
+
"version": 2,
|
|
5
|
+
"title": "Node TypeScript Builder",
|
|
6
|
+
"description": "Runs a node platform TypeScript build",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {},
|
|
9
|
+
"required": []
|
|
10
|
+
}
|