@scifeon/sdk 0.114.0 → 0.116.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.
|
@@ -44,7 +44,7 @@ __exportStar(require("../utils/test-helper"), exports);
|
|
|
44
44
|
class ScifeonCLI {
|
|
45
45
|
constructor() {
|
|
46
46
|
this.program = commander_1.program;
|
|
47
|
-
this.package = require("
|
|
47
|
+
this.package = require("../../../../package.json");
|
|
48
48
|
this.initialize();
|
|
49
49
|
this.setup();
|
|
50
50
|
const padding = new Array(20).join(" ");
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scifeon/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.116.0",
|
|
4
4
|
"description": "A tool for developing Apps for Scifeon.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Scifeon",
|
|
7
7
|
"email": "support@scifeon.com"
|
|
8
8
|
},
|
|
9
|
-
"main": "dist/
|
|
9
|
+
"main": "dist/cli/index.js",
|
|
10
10
|
"bin": {
|
|
11
|
-
"scifeon-cli": "dist/
|
|
11
|
+
"scifeon-cli": "dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"bin",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"build": "npm run clean && tsc --pretty",
|
|
22
22
|
"test": "mocha --require ts-node/register --recursive test/**/*.test.ts",
|
|
23
23
|
"test:report": "npm run test -- --reporter mocha-junit-reporter --reporter-options mochaFile=./test-report.xml",
|
|
24
|
-
"watch": "npm run
|
|
24
|
+
"watch": "npm run clean && tsc --pretty --watch",
|
|
25
25
|
"watch:test": "npm run test -- --watch"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|