@forge/bundler 2.0.0-next.12 → 2.0.0-next.13

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.0.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 7d0ef8b: Updated ignore plugin params to correctly ignore encoding import for node-fetch
8
+
3
9
  ## 2.0.0-next.12
4
10
 
5
11
  ### Patch Changes
package/out/webpack.js CHANGED
@@ -188,7 +188,7 @@ const getBuildConfig = (entrypoints, config) => {
188
188
  modules: require.resolve.paths('babel-loader') || undefined
189
189
  },
190
190
  plugins: [
191
- new webpack_1.default.IgnorePlugin({ resourceRegExp: /node-fetch/, contextRegExp: /^encoding$/ }),
191
+ new webpack_1.default.IgnorePlugin({ resourceRegExp: /^encoding$/, contextRegExp: /node-fetch/ }),
192
192
  new webpack_1.default.ProvidePlugin({
193
193
  Buffer: [resolveModulePath('buffer/'), 'Buffer'],
194
194
  path: resolveModulePath('path-browserify'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "2.0.0-next.12",
3
+ "version": "2.0.0-next.13",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Atlassian",