vona-cli 1.0.4 → 1.0.10
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/dist/bin/vona.d.ts +0 -1
- package/dist/bin/vona.js +2 -5
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -18
- package/dist/start.d.ts +0 -1
- package/dist/start.js +2 -7
- package/package.json +21 -21
- package/dist/bin/vona.d.ts.map +0 -1
- package/dist/bin/vona.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/start.d.ts.map +0 -1
- package/dist/start.js.map +0 -1
package/dist/bin/vona.d.ts
CHANGED
package/dist/bin/vona.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const start_js_1 = require("../start.js");
|
|
5
|
-
new start_js_1.VonaCommand().start();
|
|
6
|
-
//# sourceMappingURL=vona.js.map
|
|
2
|
+
import { VonaCommand } from "../start.js";
|
|
3
|
+
new VonaCommand().start();
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from './start.
|
|
2
|
-
//# sourceMappingURL=index.d.ts.map
|
|
1
|
+
export * from './start.ts';
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./start.js"), exports);
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
|
1
|
+
export * from "./start.js";
|
package/dist/start.d.ts
CHANGED
package/dist/start.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.VonaCommand = void 0;
|
|
4
|
-
const cli_1 = require("@cabloy/cli");
|
|
5
|
-
class VonaCommand extends cli_1.CabloyCommand {
|
|
1
|
+
import { CabloyCommand } from '@cabloy/cli';
|
|
2
|
+
export class VonaCommand extends CabloyCommand {
|
|
6
3
|
constructor(rawArgv) {
|
|
7
4
|
super('vona', rawArgv);
|
|
8
5
|
}
|
|
9
6
|
}
|
|
10
|
-
exports.VonaCommand = VonaCommand;
|
|
11
|
-
//# sourceMappingURL=start.js.map
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vona-cli",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.10",
|
|
4
5
|
"description": "vona cli",
|
|
5
6
|
"publishConfig": {
|
|
6
7
|
"access": "public"
|
|
7
8
|
},
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
"author": "zhennann",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"framework",
|
|
13
|
+
"vona"
|
|
14
|
+
],
|
|
12
15
|
"exports": {
|
|
13
16
|
".": {
|
|
14
17
|
"types": [
|
|
15
18
|
"./src/index.ts",
|
|
16
19
|
"./dist/index.d.ts"
|
|
17
20
|
],
|
|
18
|
-
"
|
|
19
|
-
"require": "./dist/index.js",
|
|
20
|
-
"default": "./src/index.ts"
|
|
21
|
+
"default": "./dist/index.js"
|
|
21
22
|
},
|
|
22
|
-
"
|
|
23
|
+
"./*": "./*"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"vona": "dist/bin/vona.js"
|
|
23
27
|
},
|
|
24
28
|
"files": [
|
|
25
29
|
"dist"
|
|
26
30
|
],
|
|
27
31
|
"scripts": {
|
|
28
32
|
"lint": "eslint .",
|
|
29
|
-
"clean": "
|
|
30
|
-
"tsc:publish": "npm run clean && tsc
|
|
31
|
-
"prepublishOnly": "npm run tsc:publish"
|
|
33
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
34
|
+
"tsc:publish": "npm run clean && tsc",
|
|
35
|
+
"prepublishOnly": "npm run tsc:publish",
|
|
36
|
+
"prepack": "clean-package",
|
|
37
|
+
"postpack": "clean-package restore"
|
|
32
38
|
},
|
|
33
|
-
"keywords": [
|
|
34
|
-
"framework",
|
|
35
|
-
"vona"
|
|
36
|
-
],
|
|
37
|
-
"author": "zhennann",
|
|
38
|
-
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cabloy/cli": "^
|
|
41
|
-
"vona-cli-set-api": "^1.0.
|
|
40
|
+
"@cabloy/cli": "^3.0.15",
|
|
41
|
+
"vona-cli-set-api": "^1.0.11"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "0eab9dc4a5622caffe89e7b1b3f02c08ccbc4c4b"
|
|
44
44
|
}
|
package/dist/bin/vona.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"vona.d.ts","sourceRoot":"","sources":["../../src/bin/vona.ts"],"names":[],"mappings":""}
|
package/dist/bin/vona.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"vona.js","sourceRoot":"","sources":["../../src/bin/vona.ts"],"names":[],"mappings":";;;AAEA,0CAA0C;AAC1C,IAAI,sBAAW,EAAE,CAAC,KAAK,EAAE,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}
|
package/dist/start.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,qBAAa,WAAY,SAAQ,aAAa;gBAChC,OAAO,CAAC,KAAA;CAGrB"}
|
package/dist/start.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"start.js","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":";;;AAAA,qCAA4C;AAE5C,MAAa,WAAY,SAAQ,mBAAa;IAC5C,YAAY,OAAQ;QAClB,KAAK,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACzB,CAAC;CACF;AAJD,kCAIC"}
|