@microtronics/studio-cli 1.0.1 → 1.1.0-alpha.1
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 +46 -0
- package/dist/main.js +32 -32
- package/package.json +4 -1
- package/studio-cli +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microtronics/studio-cli",
|
|
3
|
-
"version": "1.0.1",
|
|
3
|
+
"version": "1.1.0-alpha.1",
|
|
4
4
|
"description": "Microtronics Studio CLI Tool",
|
|
5
5
|
"main": "./out/api.js",
|
|
6
6
|
"typings": "./out/studio-cli.d.ts",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"compile": "npm run build:registryApiTypings && tsc",
|
|
15
15
|
"build:cli": "node build.mjs",
|
|
16
|
+
"build:exe": "node build-exe.mjs",
|
|
16
17
|
"api": "api-extractor run --local --verbose",
|
|
17
18
|
"build": "npm run compile && npm run api && npm run build:cli",
|
|
18
19
|
"watch:build": "npm run compile -- --watch",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"@types/semver": "^7.5.6",
|
|
65
66
|
"@types/update-notifier": "^6.0.8",
|
|
66
67
|
"@types/vscode": "^1.86.2",
|
|
68
|
+
"@yao-pkg/pkg": "^6.22.0",
|
|
67
69
|
"chai": "^4.3.8",
|
|
68
70
|
"chai-as-promised": "^7.1.2",
|
|
69
71
|
"cross-env": "^7.0.3",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"mocha-junit-reporter": "^2.2.1",
|
|
74
76
|
"openapi-typescript": "^7.6.0",
|
|
75
77
|
"pawncc-wasm": "bitbucket:microtronics-core/pawncc-wasm#v1.1.1",
|
|
78
|
+
"resedit": "^3.0.2",
|
|
76
79
|
"tar": "^7.5.7",
|
|
77
80
|
"ts-node": "^10.9.2",
|
|
78
81
|
"typescript": "^5.6.3"
|
package/studio-cli
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
require('./dist/main')(process.argv);
|
|
2
|
+
require('./dist/main').default(process.argv);
|