Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/instances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export function initializeInstance(
} else {
if (!loader._compiler!.hooks) {
throw new Error(
"You may be using an old version of webpack; please check you're using at least version 4"
"You may be using an old version of webpack; please check you're using at least version 4. Or you should set `transpileOnly` or `happyPackMode` to true when using with `thread-loader`."
);
}

Expand Down
1 change: 0 additions & 1 deletion src/servicesHost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ function createWatchFactory(
}
return result;
}
``;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another small fix.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good spot!


function invokeRecursiveDirectoryWatcher(
directory: string,
Expand Down
Loading