Skip to content

Commit

Permalink
chore(deps): regenerate lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Mar 12, 2024
2 parents 0b42c6e + 4f2f9d1 commit f5baba7
Show file tree
Hide file tree
Showing 4 changed files with 470 additions and 447 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -63,7 +63,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn cover --report lcovonly
- run: yarn test:coverage --report lcovonly
env:
WATCHPACK_POLLING: ${{ matrix.polling }}
- uses: codecov/codecov-action@v4
Expand Down
4 changes: 1 addition & 3 deletions lib/watchEventSource.js
Expand Up @@ -98,9 +98,7 @@ class RecursiveWatcher {
if (!filename) {
if (recursiveWatcherLogging) {
process.stderr.write(
`[watchpack] dispatch ${type} event in recursive watcher (${
this.rootPath
}) to all watchers\n`
`[watchpack] dispatch ${type} event in recursive watcher (${this.rootPath}) to all watchers\n`
);
}
for (const w of this.mapWatcherToPath.keys()) {
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -10,12 +10,12 @@
"lib/"
],
"scripts": {
"pretest": "yarn lint",
"test": "mocha",
"lint": "eslint lib",
"precover": "yarn lint",
"pretty-files": "prettier \"lib/**.*\" \"test/**/*.js\" --write",
"cover": "istanbul cover node_modules/mocha/bin/_mocha"
"lint": "eslint lib",
"test:only": "mocha",
"test:coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"pretest": "yarn lint",
"test": "mocha"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit f5baba7

Please sign in to comment.