Merge branch 'release/v1.3.0-rc4'
This commit is contained in:
commit
d59830d6ba
@ -1,12 +1,13 @@
|
|||||||
# editorconfig.org
|
# http://editorconfig.org/
|
||||||
root = true
|
root = true
|
||||||
|
|
||||||
[*]
|
[*]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
indent_size = 2
|
end_of_line = lf
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
|
||||||
[*.md]
|
[{*.yml}]
|
||||||
trim_trailing_whitespace = false
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
.appveyor.yml
|
.appveyor.yml
|
||||||
.coveralls.yml
|
|
||||||
.editorconfig
|
.editorconfig
|
||||||
.eslintrc
|
.eslintrc
|
||||||
.github
|
.github
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
],
|
],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
".appveyor.yml",
|
".appveyor.yml",
|
||||||
".coveralls.yml",
|
|
||||||
".editorconfig",
|
".editorconfig",
|
||||||
".eslintrc",
|
".eslintrc",
|
||||||
".github",
|
".github",
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
],
|
],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
".appveyor.yml",
|
".appveyor.yml",
|
||||||
".coveralls.yml",
|
|
||||||
".editorconfig",
|
".editorconfig",
|
||||||
".eslintrc",
|
".eslintrc",
|
||||||
".github",
|
".github",
|
||||||
|
31
package.json
31
package.json
@ -29,7 +29,6 @@
|
|||||||
],
|
],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
".appveyor.yml",
|
".appveyor.yml",
|
||||||
".coveralls.yml",
|
|
||||||
".editorconfig",
|
".editorconfig",
|
||||||
".eslintrc",
|
".eslintrc",
|
||||||
".github",
|
".github",
|
||||||
@ -55,33 +54,35 @@
|
|||||||
"backstopjs": "^2.3.3",
|
"backstopjs": "^2.3.3",
|
||||||
"banner-cli": "^0.6.0",
|
"banner-cli": "^0.6.0",
|
||||||
"browser-sync": "^2.18.2",
|
"browser-sync": "^2.18.2",
|
||||||
"coveralls": "^2.11.15",
|
"husky": "^0.11.6",
|
||||||
"node-sass": "^3.13.0",
|
"node-sass": "^3.13.0",
|
||||||
"npm-run-all": "^2.3.0",
|
"npm-run-all": "^2.3.0",
|
||||||
"nyc": "^10.0.0",
|
"nyc": "^10.0.0",
|
||||||
"onchange": "^2.5.0",
|
"onchange": "^2.5.0",
|
||||||
"postcss-cli": "^2.6.0",
|
"postcss-cli": "^2.6.0",
|
||||||
|
"rimraf": "^2.5.4",
|
||||||
"sass-lint": "^1.10.2"
|
"sass-lint": "^1.10.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^7.0.0"
|
"node": "^7.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prestart": "npm install",
|
|
||||||
"pretest": "npm install",
|
|
||||||
"banner": "banner-cli dist/*.css",
|
|
||||||
"clean": "rm -rf dist",
|
|
||||||
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
|
|
||||||
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
|
|
||||||
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
|
|
||||||
"build": "run-s clean lint sass autoprefixer banner",
|
|
||||||
"watch": "onchange src -- npm run build",
|
|
||||||
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
|
|
||||||
"start": "run-p build watch serve",
|
"start": "run-p build watch serve",
|
||||||
"test": "nyc ava",
|
"build": "run-s clean sass autoprefixer banner",
|
||||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
"clean": "rimraf dist",
|
||||||
|
"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 -- run-s build",
|
||||||
|
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
|
||||||
|
"test": "run-s lint ava",
|
||||||
|
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
|
||||||
|
"ava": "nyc ava",
|
||||||
|
"backstop": "run-s build && run-p serve compare",
|
||||||
"reference": "backstop reference --configPath=backstop.conf.js",
|
"reference": "backstop reference --configPath=backstop.conf.js",
|
||||||
"compare": "backstop test --configPath=backstop.conf.js",
|
"compare": "backstop test --configPath=backstop.conf.js",
|
||||||
"backstop": "run-s build && run-p serve compare"
|
"precommit": "run-s build test && git add dist/*",
|
||||||
|
"prestart": "npm install",
|
||||||
|
"pretest": "npm install"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
> A minimalist CSS framework.
|
> A minimalist CSS framework.
|
||||||
|
|
||||||
[![Travis Status](https://travis-ci.org/milligram/milligram.svg?branch=master)](https://travis-ci.org/milligram/milligram?branch=master)
|
[![Travis Status](https://travis-ci.org/milligram/milligram.svg?branch=master)](https://travis-ci.org/milligram/milligram?branch=master)
|
||||||
[![AppVeyor Status](https://ci.appveyor.com/api/projects/status/wabkk000uh6d97xk?svg=true)](https://ci.appveyor.com/project/cjpatoilo/milligram)
|
[![AppVeyor Status](https://ci.appveyor.com/api/projects/status/xcm8meymwerq0r82?svg=true)](https://ci.appveyor.com/project/cjpatoilo/milligram)
|
||||||
[![Codacy Status](https://img.shields.io/codacy/grade/848fb4bd6902434fab0bcfb5461284fe/master.svg)](https://www.codacy.com/app/milligram/milligram/dashboard)
|
[![Codacy Status](https://img.shields.io/codacy/grade/848fb4bd6902434fab0bcfb5461284fe/master.svg)](https://www.codacy.com/app/milligram/milligram/dashboard)
|
||||||
[![Dependencies Status](https://david-dm.org/milligram/milligram.svg)](https://travis-ci.org/milligram/milligram?branch=master)
|
[![Dependencies Status](https://david-dm.org/milligram/milligram.svg)](https://travis-ci.org/milligram/milligram?branch=master)
|
||||||
[![Download Status](https://img.shields.io/npm/dt/milligram.svg)](https://www.npmjs.com/package/milligram)
|
[![Download Status](https://img.shields.io/npm/dt/milligram.svg)](https://www.npmjs.com/package/milligram)
|
||||||
|
Loading…
Reference in New Issue
Block a user