Skip to content

Commit 76ec5c0

Browse files
authored
Merge pull request #203 from Scrum/milestone-0.2.0
Milestone 0.2.0
2 parents 19b59ba + af43dbc commit 76ec5c0

12 files changed

+25556
-8858
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@babel/preset-env",
55
{
66
"targets": {
7-
"node": 8
7+
"node": 10
88
}
99
}
1010
],

.clintonrc.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@
66
"*.{html,jpg}"
77
],
88
"rules": {
9-
"pkg-main": [
10-
"off"
11-
],
12-
"xo": [
13-
"off"
14-
]
9+
"pkg-main": "off",
10+
"ava": "off",
11+
"xo": "off",
12+
"use-travis": "off"
1513
}
1614
}

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"xo-space"
1515
],
1616
"rules": {
17-
"capitalized-comments": "off"
17+
"capitalized-comments": "off",
18+
"unicorn/no-reduce": "off"
1819
}
1920
}

.github/workflows/nodejs.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Actions Status
2+
on:
3+
pull_request:
4+
types: [opened, synchronize]
5+
branches:
6+
- master
7+
env:
8+
CI: true
9+
10+
jobs:
11+
run:
12+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
node: [10, 12, 14]
19+
os: [ubuntu-latest, windows-latest]
20+
21+
steps:
22+
- name: Clone repository
23+
uses: actions/checkout@v2
24+
25+
- name: Set Node.js version
26+
uses: actions/setup-node@v1
27+
with:
28+
node-version: ${{ matrix.node }}
29+
30+
- name: Install npm dependencies
31+
run: npm ci
32+
33+
- name: Run tests
34+
run: npm run test
35+
36+
- name: Run Coveralls
37+
uses: coverallsapp/github-action@master
38+
with:
39+
github-token: "${{ secrets.GITHUB_TOKEN }}"

.nycrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"reporter": ["lcov", "text"]
3+
}

.travis.yml

-11
This file was deleted.

appveyor.yml

-19
This file was deleted.

changelog.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
1+
## 0.2.0 (2020-11-11)
2+
3+
* style: after lint ([cb5ee2e](https://github.com/scrum/postcss-at-rules-variables/commit/cb5ee2e))
4+
* build: add clean publish ([e84c465](https://github.com/scrum/postcss-at-rules-variables/commit/e84c465))
5+
* build: drop support old nodejs ([01ca621](https://github.com/scrum/postcss-at-rules-variables/commit/01ca621))
6+
* build: update dep dev ([c199537](https://github.com/scrum/postcss-at-rules-variables/commit/c199537))
7+
* build: update gitignore config ([b2661c3](https://github.com/scrum/postcss-at-rules-variables/commit/b2661c3))
8+
* build(deps-dev): bump acorn from 7.1.0 to 7.1.1 ([1e4ecea](https://github.com/scrum/postcss-at-rules-variables/commit/1e4ecea))
9+
* ci: change travis and appveyor to gitlab actions ([6615f32](https://github.com/scrum/postcss-at-rules-variables/commit/6615f32))
10+
* ci: forgot nycrc ([eab5256](https://github.com/scrum/postcss-at-rules-variables/commit/eab5256))
11+
* docs: update according recommendation on migration postcss 8 ([19754bf](https://github.com/scrum/postcss-at-rules-variables/commit/19754bf))
12+
* docs: update license ([692812d](https://github.com/scrum/postcss-at-rules-variables/commit/692812d))
13+
* refactor: migrate to postcss 8, close #202 ([975ec52](https://github.com/scrum/postcss-at-rules-variables/commit/975ec52)), closes [#202](https://github.com/scrum/postcss-at-rules-variables/issues/202)
14+
15+
16+
117
## <small>0.1.10 (2019-11-20)</small>
218

19+
* 0.1.10 ([3024777](https://github.com/scrum/postcss-at-rules-variables/commit/3024777))
320
* build: add funding ([6fc9fcb](https://github.com/scrum/postcss-at-rules-variables/commit/6fc9fcb))
421
* build: move config to file ([46cfc84](https://github.com/scrum/postcss-at-rules-variables/commit/46cfc84))
22+
* build: update changelog ([9c672da](https://github.com/scrum/postcss-at-rules-variables/commit/9c672da))
523
* build: update depDev ([f5f4939](https://github.com/scrum/postcss-at-rules-variables/commit/f5f4939))
624

725

0 commit comments

Comments
 (0)