Skip to content

Commit ac02a54

Browse files
authored
Merge pull request #199 from Scrum/milestone-0.1.10
Milestone 0.1.10
2 parents 7d0c5a9 + 3024777 commit ac02a54

File tree

10 files changed

+1555
-448
lines changed

10 files changed

+1555
-448
lines changed

.babelrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"node": 8
8+
}
9+
}
10+
],
11+
[
12+
"minify",
13+
{
14+
"removeUndefined": false,
15+
"mangle": false
16+
}
17+
]
18+
],
19+
"plugins": [
20+
"add-module-exports"
21+
]
22+
}

.clintonrc.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"ignores": [
3+
"test/**",
4+
"tmp/**",
5+
"lib/**",
6+
"*.{html,jpg}"
7+
],
8+
"rules": {
9+
"pkg-main": [
10+
"off"
11+
],
12+
"xo": [
13+
"off"
14+
]
15+
}
16+
}

.editorconfig

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@ charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
1010

11-
[*.{json,yml,jade,pss,css,html,js}]
11+
[{package.json,*.yml,*.jade,*.pss,*.css,*.js,*.md,.*}]
1212
indent_size = 2
1313

14-
[changelog.md]
15-
insert_final_newline = false
16-
17-
[*.html]
14+
[{changelog.md,.*}]
1815
insert_final_newline = false
1916

2017
[*.md]
21-
trim_trailing_whitespace = false
18+
trim_trailing_whitespace = false

.eslintrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"parser": "babel-eslint",
3+
"plugins": [
4+
"prettier",
5+
"html",
6+
"unicorn",
7+
"babel",
8+
"markdown"
9+
],
10+
"extends": [
11+
"plugin:ava/recommended",
12+
"plugin:unicorn/recommended",
13+
"xo",
14+
"xo-space"
15+
],
16+
"rules": {
17+
"capitalized-comments": "off"
18+
}
19+
}

.huskyrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"hooks": {
3+
"pre-push": "npm t",
4+
"pre-commit": "clinton && lint-staged",
5+
"commit-msg": "commitlint --extends=@commitlint/config-angular -e"
6+
}
7+
}

.lintstagedrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"{src,test}/**/*.js": "eslint",
3+
"*.md": "eslint"
4+
}

ava.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default {
2+
require: [
3+
"@babel/register"
4+
]
5+
}

changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
1+
## <small>0.1.10 (2019-11-20)</small>
2+
3+
* build: add funding ([6fc9fcb](https://github.com/scrum/postcss-at-rules-variables/commit/6fc9fcb))
4+
* build: move config to file ([46cfc84](https://github.com/scrum/postcss-at-rules-variables/commit/46cfc84))
5+
* build: update depDev ([f5f4939](https://github.com/scrum/postcss-at-rules-variables/commit/f5f4939))
6+
7+
8+
19
## <small>0.1.9 (2019-10-31)</small>
210

11+
* 0.1.9 ([59cf7fa](https://github.com/scrum/postcss-at-rules-variables/commit/59cf7fa))
12+
* Create funding.yml ([da6ebe6](https://github.com/scrum/postcss-at-rules-variables/commit/da6ebe6))
13+
* build: update changelog ([9f2ae16](https://github.com/scrum/postcss-at-rules-variables/commit/9f2ae16))
314
* build: update depDev ([4c5d42b](https://github.com/scrum/postcss-at-rules-variables/commit/4c5d42b))
415
* build(deps): bump eslint-utils from 1.3.1 to 1.4.2 ([f447259](https://github.com/scrum/postcss-at-rules-variables/commit/f447259))
516
* build(deps): bump js-yaml from 3.12.1 to 3.13.1 ([5b52f1b](https://github.com/scrum/postcss-at-rules-variables/commit/5b52f1b))
617
* build(deps): bump lodash.defaultsdeep from 4.6.0 to 4.6.1 ([f4d6fd9](https://github.com/scrum/postcss-at-rules-variables/commit/f4d6fd9))
718
* build(deps): bump lodash.merge from 4.6.1 to 4.6.2 ([7df9858](https://github.com/scrum/postcss-at-rules-variables/commit/7df9858))
819
* build(deps): bump lodash.template from 4.4.0 to 4.5.0 ([9562494](https://github.com/scrum/postcss-at-rules-variables/commit/9562494))
920
* build(deps): bump mixin-deep from 1.3.1 to 1.3.2 ([e342dce](https://github.com/scrum/postcss-at-rules-variables/commit/e342dce))
10-
* Create funding.yml ([da6ebe6](https://github.com/scrum/postcss-at-rules-variables/commit/da6ebe6))
1121
* docs: fix badge node ([dcae404](https://github.com/scrum/postcss-at-rules-variables/commit/dcae404))
1222
* docs: remove badginators ([3a1d2a7](https://github.com/scrum/postcss-at-rules-variables/commit/3a1d2a7))
1323

0 commit comments

Comments
 (0)