Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): regenerate lock file #236

Merged
merged 3 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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