|
@@ -2,7 +2,7 @@
|
|
|
const { execSync } = require("child_process")
|
|
const { execSync } = require("child_process")
|
|
|
|
|
|
|
|
if (process.platform === "win32") {
|
|
if (process.platform === "win32") {
|
|
|
- execSync("npm-run-all test:*", { stdio: "inherit" })
|
|
|
|
|
|
|
+ execSync("npm-run-all test:* lint:*", { stdio: "inherit" })
|
|
|
} else {
|
|
} else {
|
|
|
- execSync("npm-run-all -p test:*", { stdio: "inherit" })
|
|
|
|
|
|
|
+ execSync("npm-run-all -p test:* lint:*", { stdio: "inherit" })
|
|
|
}
|
|
}
|