Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Mar 26, 2021
2 parents 4214087 + 2368d9c commit 8ad9bd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/08-troubleshooting.md
Expand Up @@ -64,9 +64,9 @@ There are occasional valid reasons for `this` to mean something else. If you're

### Warning: "Sourcemap is likely to be incorrect"

You'll see this warning if you generate a sourcemap with your bundle (`sourceMap: true` or `sourceMap: 'inline'`) but you're using one or more plugins that transformed code without generating a sourcemap for the transformation.
You'll see this warning if you generate a sourcemap with your bundle (`sourcemap: true` or `sourcemap: 'inline'`) but you're using one or more plugins that transformed code without generating a sourcemap for the transformation.

Usually, a plugin will only omit the sourcemap if it (the plugin, not the bundle) was configured with `sourceMap: false` – so all you need to do is change that. If the plugin doesn't generate a sourcemap, consider raising an issue with the plugin author.
Usually, a plugin will only omit the sourcemap if it (the plugin, not the bundle) was configured with `sourcemap: false` – so all you need to do is change that. If the plugin doesn't generate a sourcemap, consider raising an issue with the plugin author.


### Warning: "Treating [module] as external dependency"
Expand Down Expand Up @@ -108,4 +108,4 @@ export default {
}
}
};
```
```
4 changes: 2 additions & 2 deletions test/cli/index.js
Expand Up @@ -124,10 +124,10 @@ runTestSuiteWithSamples(
if (config.abortOnStderr) {
try {
if (await config.abortOnStderr(data)) {
childProcess.kill('SIGINT');
childProcess.kill('SIGTERM');
}
} catch (err) {
childProcess.kill('SIGINT');
childProcess.kill('SIGTERM');
done(err);
}
}
Expand Down

0 comments on commit 8ad9bd7

Please sign in to comment.