Improvement test

This commit is contained in:
CJ Patoilo 2016-12-08 20:44:24 -03:00
parent 6b22a7b794
commit ef65638b24
1 changed files with 3 additions and 4 deletions

View File

@ -54,7 +54,6 @@
"backstopjs": "^2.3.3",
"banner-cli": "^0.6.0",
"browser-sync": "^2.18.2",
"coveralls": "^2.11.15",
"node-sass": "^3.13.0",
"npm-run-all": "^2.3.0",
"nyc": "^10.0.0",
@ -70,14 +69,14 @@
"start": "run-p build watch serve",
"build": "run-s clean sass autoprefixer banner",
"clean": "rimraf dist",
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"banner": "banner-cli dist/*.css",
"watch": "onchange src -- npm run build",
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"test": "lint && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "run-s lint ava",
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
"ava": "nyc ava",
"reference": "backstop reference --configPath=backstop.conf.js",
"compare": "backstop test --configPath=backstop.conf.js",
"backstop": "run-s build && run-p serve compare",