Skip to content

Commit

Permalink
Update dependencies & sideEffects: false
Browse files Browse the repository at this point in the history
  • Loading branch information
Daninet committed Oct 15, 2023
1 parent bd3a205 commit 18de397
Show file tree
Hide file tree
Showing 15 changed files with 5,914 additions and 7,662 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ module.exports = {
'import/extensions': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'no-param-reassign': 'off',
'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'no-await-in-loop': 'off',
'default-case': 'off',
'import/prefer-default-export': 'off',
'function-paren-newline': 'off',
},
ignorePatterns: [
'benchmark/node_modules/',
Expand Down
27 changes: 13 additions & 14 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test && bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- run: npm publish
env:
CI: true
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test && bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- run: npm publish
env:
CI: true
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": false
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.10.0 (October 15, 2023)
* Add sideEffects: false to package.json
* Update dependencies, including Clang

## 4.9.0 (July 22, 2021)
* Add CRC32C
* Update dependencies, including Clang
Expand Down
Loading

0 comments on commit 18de397

Please sign in to comment.