Skip to content

Commit

Permalink
Merge pull request #34 from homer0/next
Browse files Browse the repository at this point in the history
Drop Node 12 support and update dependencies
  • Loading branch information
homer0 committed May 20, 2022
2 parents af60cbf + 670a8d0 commit 9c49d9c
Show file tree
Hide file tree
Showing 5 changed files with 3,197 additions and 3,538 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies
env:
HUSKY_SKIP_INSTALL: 1
HUSKY: 0
run: yarn --frozen-lockfile
- run: yarn semantic-release
env:
Expand All @@ -30,6 +30,5 @@ jobs:
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14' ]
node: [ '14', '16' ]
name: Run jest and ESLint (Node ${{ matrix.node }})
steps:
- uses: actions/checkout@v2
Expand All @@ -18,7 +18,7 @@ jobs:
- run: yarn lint:all
- run: yarn test
- name: Coveralls
if: ${{ matrix.node == '12' }}
if: ${{ matrix.node == '14' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12
14
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,28 @@
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@homer0/eslint-plugin": "^8.0.1",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@homer0/eslint-plugin": "^9.0.2",
"@homer0/prettier-config": "^1.1.1",
"@homer0/prettier-plugin-jsdoc": "^4.0.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"cjs2esm": "^2.0.1",
"@homer0/prettier-plugin-jsdoc": "^5.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"cjs2esm": "^3.1.1",
"docdash": "homer0/docdash#semver:^2.1.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"jest": "^27.2.0",
"jsdoc": "^3.6.7",
"leasot": "^12.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"semantic-release": "^17.4.7",
"wootils": "^5.0.1"
"eslint": "^8.15.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jsdoc": "^3.6.10",
"leasot": "^13.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"engine-strict": true,
"engines": {
"node": ">=12"
"node": ">=14"
},
"main": "src/index.js",
"scripts": {
Expand Down
Loading

0 comments on commit 9c49d9c

Please sign in to comment.