@forge/bundler 2.0.1-next.1 → 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,32 @@
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
+
9
+ ## 2.0.1-next.4
10
+
11
+ ### Patch Changes
12
+
13
+ - @forge/cli-shared@2.2.2-next.3
14
+ - @forge/lint@3.0.1-next.3
15
+
16
+ ## 2.0.1-next.3
17
+
18
+ ### Patch Changes
19
+
20
+ - @forge/cli-shared@2.2.2-next.2
21
+ - @forge/lint@3.0.1-next.2
22
+
23
+ ## 2.0.1-next.2
24
+
25
+ ### Patch Changes
26
+
27
+ - @forge/cli-shared@2.2.2-next.1
28
+ - @forge/lint@3.0.1-next.1
29
+
3
30
  ## 2.0.1-next.1
4
31
 
5
32
  ### 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.1",
3
+ "version": "2.1.0-next.5",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Atlassian",
@@ -24,8 +24,8 @@
24
24
  "babel-loader": "^8.2.3",
25
25
  "browserify-zlib": "^0.2.0",
26
26
  "buffer": "^6.0.3",
27
- "@forge/cli-shared": "2.2.2-next.0",
28
- "@forge/lint": "3.0.1-next.0",
27
+ "@forge/cli-shared": "2.2.2-next.3",
28
+ "@forge/lint": "3.0.1-next.3",
29
29
  "chalk": "^2.4.2",
30
30
  "console-browserify": "^1.2.0",
31
31
  "crypto-browserify": "^3.12.0",