quackage 1.0.58 → 1.0.59
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/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quackage",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.59",
|
|
4
4
|
"description": "Building. Testing. Quacking. Reloading.",
|
|
5
5
|
"main": "source/Quackage-CLIProgram.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"start": "node source/Quackage-Run.js",
|
|
8
8
|
"coverage": "npx nyc --reporter=lcov --reporter=text-lcov npx mocha -- -u tdd -R spec",
|
|
9
|
-
"test": "npx
|
|
9
|
+
"test": "npx quack test",
|
|
10
10
|
"build": "./source/Quackage-Run.js buildtemplates ./templates",
|
|
11
|
-
"tests": "npx
|
|
11
|
+
"tests": "npx quack test -g"
|
|
12
12
|
},
|
|
13
13
|
"bin": {
|
|
14
14
|
"quack": "./source/Quackage-Run.js",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"gulp-env": "^0.4.0",
|
|
61
61
|
"gulp-sourcemaps": "^3.0.0",
|
|
62
62
|
"gulp-terser": "^2.1.0",
|
|
63
|
-
"indoctrinate": "^1.0.
|
|
63
|
+
"indoctrinate": "^1.0.8",
|
|
64
64
|
"jsdoc": "^4.0.5",
|
|
65
65
|
"mocha": "10.4.0",
|
|
66
66
|
"npm-check-updates": "^18.0.1",
|
|
67
67
|
"nyc": "^15.1.0",
|
|
68
|
-
"pict-docuserve": "^0.0.
|
|
69
|
-
"pict-service-commandlineutility": "^1.0.
|
|
68
|
+
"pict-docuserve": "^0.0.28",
|
|
69
|
+
"pict-service-commandlineutility": "^1.0.19",
|
|
70
70
|
"vinyl-buffer": "^1.0.1",
|
|
71
71
|
"vinyl-source-stream": "^2.0.0"
|
|
72
72
|
},
|
|
@@ -59,7 +59,7 @@ class QuackageCommandBuild extends libCommandLineCommand
|
|
|
59
59
|
{
|
|
60
60
|
// The standard mocha command we've been using:
|
|
61
61
|
// npx mocha -u tdd -R spec
|
|
62
|
-
this.fable.QuackageProcess.execute(`${tmpMochaLocation}`, [`-u`, `tdd`, '-R', 'spec'], { cwd: this.fable.AppData.CWD }, fCallback);
|
|
62
|
+
this.fable.QuackageProcess.execute(`${tmpMochaLocation}`, [`-u`, `tdd`, '--exit', '-R', 'spec'], { cwd: this.fable.AppData.CWD }, fCallback);
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
65
|
}
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node source/CLI-Service.js",
|
|
11
|
-
"test": "npx
|
|
12
|
-
"tests": "npx
|
|
11
|
+
"test": "npx quack test",
|
|
12
|
+
"tests": "npx quack test -g",
|
|
13
13
|
"coverage": "npx nyc --reporter=lcov --reporter=text-lcov npx mocha -- -u tdd -R spec",
|
|
14
14
|
"build": "npx quack build"
|
|
15
15
|
},
|