Skip to content

Commit

Permalink
chore: update deps. (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
morganney committed Jan 20, 2024
1 parent dfad510 commit 08e069c
Show file tree
Hide file tree
Showing 7 changed files with 5,477 additions and 8,961 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: '2020',
sourceType: 'module'
sourceType: 'module',
babelOptions: {
plugins: ['@babel/plugin-syntax-import-attributes']
}
},
plugins: ['jest', 'prettier']
}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

jobs:
ci:
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2.4.0
with:
node-version: '16.5.0'
node-version: '20.10.0'
- name: Cache
uses: actions/cache@v2.1.6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2.4.0
with:
node-version: '16.5.0'
node-version: '20.10.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
Expand All @@ -28,6 +28,6 @@ jobs:
- name: Lint
run: npm run lint
- name: Push to NPM registry
uses: JS-DevTools/npm-publish@v1.0.0
uses: JS-DevTools/npm-publish@v2.1.0
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# [`webpack-strip-debug-loader`](https://www.npmjs.com/package/webpack-strip-debug-loader)

![CI](https://github.com/morganney/webpack-strip-debug-loader/actions/workflows/ci.yml/badge.svg)
[![codecov](https://codecov.io/gh/morganney/webpack-strip-debug-loader/branch/master/graph/badge.svg?token=1DWQL43B8V)](https://codecov.io/gh/morganney/webpack-strip-debug-loader)
[![codecov](https://codecov.io/gh/morganney/webpack-strip-debug-loader/branch/main/graph/badge.svg?token=1DWQL43B8V)](https://codecov.io/gh/morganney/webpack-strip-debug-loader)

> [!WARNING]
> Uses a regex to find `debug` usage, your mileage may vary.
Removes [`debug`](https://www.npmjs.com/package/debug) usage from your source code during webpack builds.

Expand Down

0 comments on commit 08e069c

Please sign in to comment.