Skip to content

Commit 343aa03

Browse files
authored
Merge pull request #301 from posthtml/milestone-0.6.0
Milestone 0.6.0
2 parents 3e46b67 + 153a9d7 commit 343aa03

13 files changed

Lines changed: 14221 additions & 46 deletions

File tree

.clintonrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"rules": {
1010
"cli": "off",
1111
"xo": "off",
12-
"ava": "off"
12+
"ava": "off",
13+
"use-travis": "off"
1314
}
1415
}

.github/funding.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: posthtml
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/nodejs.yml

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

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
node_modules
22
.nyc_output
33
npm-debug.log
4-
package-lock.json
54
coverage
65
lib

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
package-lock=false
1+

.nycrc

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

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
1+
## 0.6.0 (2020-06-02)
2+
3+
* ci: add nyc config ([3c23315](https://github.com/posthtml/posthtml-cli/commit/3c23315))
4+
* ci: enable package lock ([52b5eda](https://github.com/posthtml/posthtml-cli/commit/52b5eda))
5+
* ci: migrate to github action, close #299 ([fe8e6c3](https://github.com/posthtml/posthtml-cli/commit/fe8e6c3)), closes [#299](https://github.com/posthtml/posthtml-cli/issues/299)
6+
* ci: off use travis ([13b31e3](https://github.com/posthtml/posthtml-cli/commit/13b31e3))
7+
* docs: readme.md space adjustment ([13af1fc](https://github.com/posthtml/posthtml-cli/commit/13af1fc))
8+
* docs: update github badges ([f0c75ef](https://github.com/posthtml/posthtml-cli/commit/f0c75ef))
9+
* style: after update dep dev ([ec75743](https://github.com/posthtml/posthtml-cli/commit/ec75743))
10+
* build: update dep dev ([dc9f63c](https://github.com/posthtml/posthtml-cli/commit/dc9f63c))
11+
* test: add tests for allInOutput and root options ([362a00b](https://github.com/posthtml/posthtml-cli/commit/362a00b))
12+
* test: added timeout option to test script ([279ad8b](https://github.com/posthtml/posthtml-cli/commit/279ad8b))
13+
* test: rename base to root ([cbe615e](https://github.com/posthtml/posthtml-cli/commit/cbe615e))
14+
* test: test modified to argument changes ([785d64c](https://github.com/posthtml/posthtml-cli/commit/785d64c))
15+
* refactor: code refactor ([59cdbf1](https://github.com/posthtml/posthtml-cli/commit/59cdbf1))
16+
* feat: add allInOutput option ([2bdc8be](https://github.com/posthtml/posthtml-cli/commit/2bdc8be)), closes [/github.com/posthtml/posthtml-cli/pull/298#pullrequestreview-420695022](https://github.com//github.com/posthtml/posthtml-cli/pull/298/issues/pullrequestreview-420695022)
17+
* feat: base option ([d334ebe](https://github.com/posthtml/posthtml-cli/commit/d334ebe))
18+
19+
20+
121
## <small>0.5.4 (2020-02-17)</small>
222

23+
* 0.5.4 ([7740663](https://github.com/posthtml/posthtml-cli/commit/7740663))
24+
* build: update changelog ([1eedf68](https://github.com/posthtml/posthtml-cli/commit/1eedf68))
325
* build: update dep dev and move config to file ([fd39ed8](https://github.com/posthtml/posthtml-cli/commit/fd39ed8))
426
* fix: require of plugin that exports ES module ([bf735d1](https://github.com/posthtml/posthtml-cli/commit/bf735d1))
527
* fix: version pkg ([8a7b8c6](https://github.com/posthtml/posthtml-cli/commit/8a7b8c6))

0 commit comments

Comments
 (0)