@storm-software/workspace-tools 1.27.0 → 1.29.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/executors.json +5 -0
- package/generators.json +5 -0
- package/index.js +165 -118
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +94 -59
- package/src/executors/tsup/get-config.js +18427 -627
- package/src/executors/tsup/schema.json +1 -1
- package/src/executors/tsup-browser/executor.js +117986 -0
- package/src/executors/tsup-browser/schema.d.ts +9 -0
- package/src/executors/tsup-browser/schema.json +11 -0
- package/src/executors/tsup-neutral/executor.js +94 -59
- package/src/executors/tsup-node/executor.js +94 -59
- package/src/generators/browser-library/files/README.md +58 -0
- package/src/generators/browser-library/files/jest.config.ts +3 -0
- package/src/generators/browser-library/files/src/index.ts.template +10 -0
- package/src/generators/browser-library/files/tsconfig.spec.json +13 -0
- package/src/generators/browser-library/generator.js +48471 -0
- package/src/generators/browser-library/schema.d.ts +22 -0
- package/src/generators/browser-library/schema.json +82 -0
- package/src/generators/neutral-library/generator.js +48445 -0
- package/src/generators/node-library/generator.js +17 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.28.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.27.0...workspace-tools-v1.28.0) (2023-12-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added compiled child directories to build package ([3acac2b](https://github.com/storm-software/storm-ops/commit/3acac2b7ed07734665ca71cef80afc9bc0f88b8c))
|
|
7
|
+
|
|
8
|
+
# [1.27.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.26.1...workspace-tools-v1.27.0) (2023-12-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Add `implicitDependencies` to external list ([9bc79bc](https://github.com/storm-software/storm-ops/commit/9bc79bcefa6358b15ae78bcc811c7554762baa6b))
|
|
14
|
+
|
|
1
15
|
## [1.26.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.26.0...workspace-tools-v1.26.1) (2023-12-12)
|
|
2
16
|
|
|
3
17
|
|
package/executors.json
CHANGED
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"implementation": "./src/executors/tsup-node/executor",
|
|
16
16
|
"schema": "./src/executors/tsup-node/schema.json",
|
|
17
17
|
"description": "Runs a node platform TypeScript build"
|
|
18
|
+
},
|
|
19
|
+
"tsup-browser": {
|
|
20
|
+
"implementation": "./src/executors/tsup-browser/executor",
|
|
21
|
+
"schema": "./src/executors/tsup-browser/schema.json",
|
|
22
|
+
"description": "Runs a browser platform TypeScript build"
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
}
|
package/generators.json
CHANGED
|
@@ -29,6 +29,11 @@
|
|
|
29
29
|
"factory": "./src/generators/neutral-library/generator",
|
|
30
30
|
"schema": "./src/generators/neutral-library/schema.json",
|
|
31
31
|
"description": "Create a new Neutral TypeScript library package in the Storm workspace"
|
|
32
|
+
},
|
|
33
|
+
"browser-library": {
|
|
34
|
+
"factory": "./src/generators/browser-library/generator",
|
|
35
|
+
"schema": "./src/generators/browser-library/schema.json",
|
|
36
|
+
"description": "Create a new browser TypeScript library package in the Storm workspace"
|
|
32
37
|
}
|
|
33
38
|
}
|
|
34
39
|
}
|