@forge/bundler 2.0.1-next.4 → 2.1.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/bundler
2
2
 
3
+ ## 2.1.0-next.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 1f6cf083: Fix webpack devtool config in debugMode
8
+
3
9
  ## 2.0.1-next.4
4
10
 
5
11
  ### Patch Changes
package/out/webpack.js CHANGED
@@ -48,7 +48,7 @@ exports.getDevToolConfig = (config) => {
48
48
  if (!config.isWatchMode) {
49
49
  return 'source-map';
50
50
  }
51
- return config.isDebugMode ? 'cheap-module-eval-source-map' : 'cheap-source-map';
51
+ return config.isDebugMode ? 'eval-cheap-module-source-map' : 'cheap-source-map';
52
52
  };
53
53
  const getCustomModulesAliases = () => {
54
54
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "2.0.1-next.4",
3
+ "version": "2.1.0-next.5",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Atlassian",