@forge/bundler 3.0.0-next.7 → 3.0.0

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,48 @@
1
1
  # @forge/bundler
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 60fcb01: Use versions of polyfills from earlier versions of @forge/cli
8
+
9
+ ### Minor Changes
10
+
11
+ - 1f6cf08: Fix webpack devtool config in debugMode
12
+ - 04fcd8c: Add direct dependencies to fix reslove issue
13
+ - 3103a29: Update webpack config to fix module resolution issue with package exports
14
+ - 057cdfc: Fix webpack exportsFields config
15
+
16
+ ### Patch Changes
17
+
18
+ - f27cbfc: Do not fail on TS errors
19
+ - @forge/cli-shared@2.2.2
20
+ - @forge/lint@3.0.1
21
+
22
+ ## 3.0.0-next.10
23
+
24
+ ### Minor Changes
25
+
26
+ - 04fcd8c7: Add direct dependencies to fix reslove issue
27
+
28
+ ## 3.0.0-next.9
29
+
30
+ ### Minor Changes
31
+
32
+ - 057cdfcc: Fix webpack exportsFields config
33
+
34
+ ### Patch Changes
35
+
36
+ - @forge/cli-shared@2.2.2-next.6
37
+ - @forge/lint@3.0.1-next.6
38
+
39
+ ## 3.0.0-next.8
40
+
41
+ ### Patch Changes
42
+
43
+ - @forge/cli-shared@2.2.2-next.5
44
+ - @forge/lint@3.0.1-next.5
45
+
3
46
  ## 3.0.0-next.7
4
47
 
5
48
  ### Minor Changes
package/out/webpack.js CHANGED
@@ -181,7 +181,7 @@ const getBuildConfig = (entrypoints, config) => {
181
181
  performance: false,
182
182
  resolve: {
183
183
  mainFields: ['main', 'module'],
184
- exportsFields: ['node'],
184
+ exportsFields: [],
185
185
  alias: getCustomModulesAliases(),
186
186
  extensions: ['.ts', '.tsx', '.js', '.jsx', '.json']
187
187
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "3.0.0-next.7",
3
+ "version": "3.0.0",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Atlassian",
@@ -20,12 +20,14 @@
20
20
  "@babel/preset-typescript": "^7.16.7",
21
21
  "@forge/api": "2.6.0",
22
22
  "@forge/babel-plugin-transform-ui": "1.1.0",
23
+ "@forge/cli-shared": "2.2.2",
24
+ "@forge/lint": "3.0.1",
23
25
  "babel-loader": "^8.2.3",
24
- "@forge/cli-shared": "2.2.2-next.4",
25
- "@forge/lint": "3.0.1-next.4",
26
+ "buffer": "^4.3.0",
26
27
  "chalk": "^2.4.2",
27
28
  "memfs": "^3.4.1",
28
29
  "node-libs-browser": "^2.2.1",
30
+ "path-browserify": "^1.0.0",
29
31
  "querystring-browser": "^1.0.4",
30
32
  "readable-stream": "^3.4.0",
31
33
  "text-encoder-lite": "^2.0.0",