Skip to content

Commit

Permalink
Merge pull request #301 from posthtml/milestone-0.6.0
Browse files Browse the repository at this point in the history
Milestone 0.6.0
  • Loading branch information
Scrum authored Jun 2, 2020
2 parents 3e46b67 + 153a9d7 commit 343aa03
Show file tree
Hide file tree
Showing 13 changed files with 14,221 additions and 46 deletions.
3 changes: 2 additions & 1 deletion .clintonrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"rules": {
"cli": "off",
"xo": "off",
"ava": "off"
"ava": "off",
"use-travis": "off"
}
}
12 changes: 12 additions & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: posthtml
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
35 changes: 35 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Actions Status
on: [push, pull_request]
env:
CI: true

jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node: [10, 12, 14]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Install npm dependencies
run: npm ci

- name: Run tests
run: npm run test

- name: Run Coveralls
uses: coverallsapp/github-action@master
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
.nyc_output
npm-debug.log
package-lock.json
coverage
lib
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package-lock=false

3 changes: 3 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"reporter": ["lcov", "text"]
}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

19 changes: 0 additions & 19 deletions appveyor.yml

This file was deleted.

22 changes: 22 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
## 0.6.0 (2020-06-02)

* ci: add nyc config ([3c23315](https:/posthtml/posthtml-cli/commit/3c23315))
* ci: enable package lock ([52b5eda](https:/posthtml/posthtml-cli/commit/52b5eda))
* ci: migrate to github action, close #299 ([fe8e6c3](https:/posthtml/posthtml-cli/commit/fe8e6c3)), closes [#299](https:/posthtml/posthtml-cli/issues/299)
* ci: off use travis ([13b31e3](https:/posthtml/posthtml-cli/commit/13b31e3))
* docs: readme.md space adjustment ([13af1fc](https:/posthtml/posthtml-cli/commit/13af1fc))
* docs: update github badges ([f0c75ef](https:/posthtml/posthtml-cli/commit/f0c75ef))
* style: after update dep dev ([ec75743](https:/posthtml/posthtml-cli/commit/ec75743))
* build: update dep dev ([dc9f63c](https:/posthtml/posthtml-cli/commit/dc9f63c))
* test: add tests for allInOutput and root options ([362a00b](https:/posthtml/posthtml-cli/commit/362a00b))
* test: added timeout option to test script ([279ad8b](https:/posthtml/posthtml-cli/commit/279ad8b))
* test: rename base to root ([cbe615e](https:/posthtml/posthtml-cli/commit/cbe615e))
* test: test modified to argument changes ([785d64c](https:/posthtml/posthtml-cli/commit/785d64c))
* refactor: code refactor ([59cdbf1](https:/posthtml/posthtml-cli/commit/59cdbf1))
* feat: add allInOutput option ([2bdc8be](https:/posthtml/posthtml-cli/commit/2bdc8be)), closes [/github.com/posthtml/posthtml-cli/pull/298#pullrequestreview-420695022](https:/posthtml/posthtml-cli/pull/298/issues/pullrequestreview-420695022)
* feat: base option ([d334ebe](https:/posthtml/posthtml-cli/commit/d334ebe))



## <small>0.5.4 (2020-02-17)</small>

* 0.5.4 ([7740663](https:/posthtml/posthtml-cli/commit/7740663))
* build: update changelog ([1eedf68](https:/posthtml/posthtml-cli/commit/1eedf68))
* build: update dep dev and move config to file ([fd39ed8](https:/posthtml/posthtml-cli/commit/fd39ed8))
* fix: require of plugin that exports ES module ([bf735d1](https:/posthtml/posthtml-cli/commit/bf735d1))
* fix: version pkg ([8a7b8c6](https:/posthtml/posthtml-cli/commit/8a7b8c6))
Expand Down
Loading

0 comments on commit 343aa03

Please sign in to comment.