@architect/hydrate
Advanced tools
Comparing version 1.2.3 to 1.2.4
{ | ||
"name": "@architect/hydrate", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"description": "Architect dependency hydrator and shared file manager", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "npm run lint && npm run test:unit && npm run test:integration", | ||
"test": "npm run lint && npm run test:integration && npm run coverage", | ||
"test:unit": "tape test/unit-tests.js | tap-spec", | ||
"test:integration": "tape test/integration-tests.js | tap-spec", | ||
"coverage": "istanbul cover tape test/unit-tests.js", | ||
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test:unit", | ||
"lint": "eslint . --fix --ignore-pattern node_modules" | ||
@@ -26,3 +26,3 @@ }, | ||
"@architect/parser": "^1.1.7", | ||
"@architect/utils": "^1.0.3", | ||
"@architect/utils": "^1.2.3", | ||
"chalk": "^2.4.2", | ||
@@ -35,5 +35,6 @@ "cpr": "^3.0.1", | ||
"devDependencies": { | ||
"codecov": "^3.5.0", | ||
"eslint": "^5.16.0", | ||
"istanbul": "^0.4.5", | ||
"mkdirp": "^0.5.1", | ||
"nyc": "^14.1.1", | ||
"sinon": "^7.3.2", | ||
@@ -40,0 +41,0 @@ "tap-spec": "^5.0.0", |
let chalk = require('chalk') | ||
let chars = require('@architect/utils').chars | ||
function start (params) { | ||
let {cwd, cmd, quiet} = params | ||
let indicator = chalk.green.dim('⚬') | ||
let status = chalk.grey('Hydrating dependencies:') | ||
let path = chalk.cyan(cwd.replace(process.cwd(), '')) | ||
let command = chalk.cyan.dim(`[${cmd}]`) | ||
let info = `${indicator} ${status} ${path} ${command}` | ||
let info = `${chars.start} ${status} ${path} ${command}` | ||
if (!quiet) console.log(info) | ||
@@ -11,0 +11,0 @@ return info |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
83325
21
7
Updated@architect/utils@^1.2.3