@soat/cli 0.0.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/bin/soat +2 -0
- package/dist/esm/index.js +33 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +34 -0
- package/package.json +27 -0
package/bin/soat
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
|
|
3
|
+
// src/index.ts
|
|
4
|
+
import { program } from "commander";
|
|
5
|
+
|
|
6
|
+
// package.json
|
|
7
|
+
var package_default = {
|
|
8
|
+
name: "soat",
|
|
9
|
+
version: "0.0.1",
|
|
10
|
+
scripts: {
|
|
11
|
+
build: "tsup",
|
|
12
|
+
test: "jest --projects tests/unit"
|
|
13
|
+
},
|
|
14
|
+
dependencies: {
|
|
15
|
+
commander: "^14.0.2"
|
|
16
|
+
},
|
|
17
|
+
devDependencies: {
|
|
18
|
+
"@ttoss/config": "^1.35.12",
|
|
19
|
+
"@types/jest": "^30.0.0",
|
|
20
|
+
jest: "^30.2.0",
|
|
21
|
+
tsup: "^8.5.1",
|
|
22
|
+
tsx: "^4.21.0"
|
|
23
|
+
},
|
|
24
|
+
files: ["dist"],
|
|
25
|
+
bin: "./bin/soat"
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
// src/index.ts
|
|
29
|
+
program.name("soat").description("SOAT CLI - Command Line Interface for SOAT").version(package_default.version);
|
|
30
|
+
program.action(() => {
|
|
31
|
+
console.log("Work is in progress");
|
|
32
|
+
});
|
|
33
|
+
program.parse();
|
package/dist/index.d.mts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
// src/index.ts
|
|
5
|
+
var import_commander = require("commander");
|
|
6
|
+
|
|
7
|
+
// package.json
|
|
8
|
+
var package_default = {
|
|
9
|
+
name: "soat",
|
|
10
|
+
version: "0.0.1",
|
|
11
|
+
scripts: {
|
|
12
|
+
build: "tsup",
|
|
13
|
+
test: "jest --projects tests/unit"
|
|
14
|
+
},
|
|
15
|
+
dependencies: {
|
|
16
|
+
commander: "^14.0.2"
|
|
17
|
+
},
|
|
18
|
+
devDependencies: {
|
|
19
|
+
"@ttoss/config": "^1.35.12",
|
|
20
|
+
"@types/jest": "^30.0.0",
|
|
21
|
+
jest: "^30.2.0",
|
|
22
|
+
tsup: "^8.5.1",
|
|
23
|
+
tsx: "^4.21.0"
|
|
24
|
+
},
|
|
25
|
+
files: ["dist"],
|
|
26
|
+
bin: "./bin/soat"
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
// src/index.ts
|
|
30
|
+
import_commander.program.name("soat").description("SOAT CLI - Command Line Interface for SOAT").version(package_default.version);
|
|
31
|
+
import_commander.program.action(() => {
|
|
32
|
+
console.log("Work is in progress");
|
|
33
|
+
});
|
|
34
|
+
import_commander.program.parse();
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@soat/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"build": "tsup",
|
|
6
|
+
"test": "jest --projects tests/unit"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@ttoss/logger": "^0.7.1",
|
|
10
|
+
"commander": "^14.0.2"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@ttoss/config": "^1.35.12",
|
|
14
|
+
"@types/jest": "^30.0.0",
|
|
15
|
+
"jest": "^30.2.0",
|
|
16
|
+
"tsup": "^8.5.1",
|
|
17
|
+
"tsx": "^4.21.0"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"bin"
|
|
22
|
+
],
|
|
23
|
+
"bin": "./bin/soat",
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
}
|
|
27
|
+
}
|