arylo-init
Advanced tools
Comparing version 2.1.22 to 2.1.23
@@ -12,3 +12,5 @@ "use strict"; | ||
if (spaceNum >= 0) { | ||
action += Array(6 - spaceNum).fill(" ").join(""); | ||
action += Array(6 - spaceNum) | ||
.fill(" ") | ||
.join(""); | ||
} | ||
@@ -33,3 +35,6 @@ } | ||
} | ||
if (process.env.CI) { | ||
return true; | ||
} | ||
return process.stdout.write(`${action} ${msg}\n`); | ||
}; |
@@ -11,3 +11,5 @@ import chalk from "chalk"; | ||
if (spaceNum >= 0) { | ||
action += Array(6 - spaceNum).fill(" ").join(""); | ||
action += Array(6 - spaceNum) | ||
.fill(" ") | ||
.join(""); | ||
} | ||
@@ -32,3 +34,6 @@ } | ||
} | ||
if (process.env.CI) { | ||
return true; | ||
} | ||
return process.stdout.write(`${action} ${msg}\n`); | ||
}; |
{ | ||
"name": "arylo-init", | ||
"version": "2.1.22", | ||
"version": "2.1.23", | ||
"description": "Initial Node.js Project for Arylo Edition", | ||
@@ -23,3 +23,3 @@ "main": "./dist/index.js", | ||
"pretest": "npm run clean && npm run build:test && npm run resource", | ||
"test": "ava ./dist/test/**/*.spec.*" | ||
"test": "cross-env CI=true ava ./dist/test/**/*.spec.*" | ||
}, | ||
@@ -78,2 +78,3 @@ "repository": { | ||
"ava": "^1.4.1", | ||
"cross-env": "^5.2.0", | ||
"dtss": "^1.1.1", | ||
@@ -80,0 +81,0 @@ "eslint": "^4.19.1", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
98015
91
2330
31
11