Skip to content

Commit

Permalink
Merge pull request #28 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 00a08ae + b83679e commit 1cac086
Show file tree
Hide file tree
Showing 6 changed files with 2,414 additions and 2,912 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
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
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 == '16' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
12
14
32 changes: 16 additions & 16 deletions package.json
Expand Up @@ -14,29 +14,29 @@
"typedef"
],
"dependencies": {
"jsdoc": "^3.6.7"
"jsdoc": "^3.6.10"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@homer0/eslint-plugin": "^8.0.2",
"@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.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@homer0/prettier-plugin-jsdoc": "^5.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"docdash": "homer0/docdash#semver:^2.1.0",
"eslint": "^8.0.1",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"jest": "^27.2.5",
"leasot": "^12.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"semantic-release": "^17.4.7"
"eslint": "^8.15.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"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"
},
"lint-staged": {
"*.js": [
Expand Down
3 changes: 2 additions & 1 deletion src/features/index.js
Expand Up @@ -2,7 +2,8 @@

module.exports.ExtendTypes = require('./extendTypes').ExtendTypes;
module.exports.ModulesOnMemberOf = require('./modulesOnMemberOf').ModulesOnMemberOf;
module.exports.ModulesTypesShortName = require('./modulesTypesShortName').ModulesTypesShortName;
module.exports.ModulesTypesShortName =
require('./modulesTypesShortName').ModulesTypesShortName;
module.exports.TagsReplacement = require('./tagsReplacement').TagsReplacement;
module.exports.TSUtilitiesTypes = require('./tsUtilityTypes').TSUtilitiesTypes;
module.exports.TypedefImports = require('./typedefImports').TypedefImports;
Expand Down

0 comments on commit 1cac086

Please sign in to comment.