Skip to content

Commit 9dcaf2b

Browse files
committed
Fix package.json casing
1 parent 2b1b58b commit 9dcaf2b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Gulpfile.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import * as minimist from "minimist";
1616
import * as os from "os";
1717
import * as Linter from "tslint";
1818
const gulp = helpMaker(originalGulp);
19-
import {runTestsInParallel} from "./scripts/mocha-parallel";
19+
const mochaParallel = require("./scripts/mocha-parallel.js");
20+
const {runTestsInParallel} = mochaParallel;
2021

2122
const cmdLineOptions = minimist(process.argv.slice(2), {
2223
boolean: ["debug", "light", "colors", "lint", "soft"],

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"node": ">=0.8.0"
3030
},
3131
"devDependencies": {
32-
"@types/Q": "latest",
3332
"@types/del": "latest",
3433
"@types/glob": "latest",
3534
"@types/gulp": "latest",

0 commit comments

Comments
 (0)