sdtk-kit 1.7.0 → 1.8.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/README.md +2 -2
- package/bin/sdtk-code.js +0 -0
- package/bin/sdtk-design.js +0 -0
- package/bin/sdtk-ops.js +0 -0
- package/bin/sdtk-spec.js +0 -0
- package/bin/sdtk-wiki.js +0 -0
- package/bin/sdtk.js +7 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -119,11 +119,11 @@ are the mechanism that puts `sdtk`, `sdtk-spec`, `sdtk-code`, `sdtk-ops`,
|
|
|
119
119
|
- **Major version bumps** in any sub-toolkit require a coordinated `sdtk-kit` major-bump and re-publish.
|
|
120
120
|
- If you need exact version control per toolkit, use standalone packages instead.
|
|
121
121
|
|
|
122
|
-
Current dependency ranges (as of sdtk-kit v1.
|
|
122
|
+
Current dependency ranges (as of sdtk-kit v1.8.0):
|
|
123
123
|
|
|
124
124
|
| Package | Version |
|
|
125
125
|
|------------------|---------|
|
|
126
|
-
| sdtk-spec-kit | ^0.
|
|
126
|
+
| sdtk-spec-kit | ^0.5.0 |
|
|
127
127
|
| sdtk-code-kit | ^0.3.0 |
|
|
128
128
|
| sdtk-ops-kit | ^0.2.4 |
|
|
129
129
|
| sdtk-design-kit | ^0.3.2 |
|
package/bin/sdtk-code.js
CHANGED
|
File without changes
|
package/bin/sdtk-design.js
CHANGED
|
File without changes
|
package/bin/sdtk-ops.js
CHANGED
|
File without changes
|
package/bin/sdtk-spec.js
CHANGED
|
File without changes
|
package/bin/sdtk-wiki.js
CHANGED
|
File without changes
|
package/bin/sdtk.js
CHANGED
|
@@ -113,7 +113,13 @@ function main(argv) {
|
|
|
113
113
|
if (command === "activate") {
|
|
114
114
|
// eslint-disable-next-line global-require
|
|
115
115
|
const { cmdActivate } = require("../src/commands/activate");
|
|
116
|
-
|
|
116
|
+
cmdActivate(argv.slice(1)).then((code) => {
|
|
117
|
+
process.exitCode = code;
|
|
118
|
+
}).catch((err) => {
|
|
119
|
+
console.error(`sdtk activate: unexpected error: ${err.message}`);
|
|
120
|
+
process.exitCode = 2;
|
|
121
|
+
});
|
|
122
|
+
return 0; // exitCode will be overwritten by the Promise above
|
|
117
123
|
}
|
|
118
124
|
|
|
119
125
|
console.error(`sdtk: unknown command '${command}'.`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sdtk-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "Install all five SDTK toolkits in one command. Meta-package for sdtk-spec-kit, sdtk-code-kit, sdtk-ops-kit, sdtk-design-kit, and sdtk-wiki-kit.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"pack:smoke": "npm pack --dry-run"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"sdtk-spec-kit": "^0.
|
|
30
|
+
"sdtk-spec-kit": "^0.5.0",
|
|
31
31
|
"sdtk-code-kit": "^0.3.0",
|
|
32
32
|
"sdtk-ops-kit": "^0.2.4",
|
|
33
33
|
"sdtk-design-kit": "^0.3.2",
|