@forge/bundler 3.0.0-next.8 → 3.0.1-next.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 +44 -0
- package/out/webpack.js +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @forge/bundler
|
|
2
2
|
|
|
3
|
+
## 3.0.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [949bd40]
|
|
8
|
+
- @forge/cli-shared@2.3.0-next.0
|
|
9
|
+
- @forge/lint@3.0.2-next.0
|
|
10
|
+
|
|
11
|
+
## 3.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- 60fcb01: Use versions of polyfills from earlier versions of @forge/cli
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 1f6cf08: Fix webpack devtool config in debugMode
|
|
20
|
+
- 04fcd8c: Add direct dependencies to fix reslove issue
|
|
21
|
+
- 3103a29: Update webpack config to fix module resolution issue with package exports
|
|
22
|
+
- 057cdfc: Fix webpack exportsFields config
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- f27cbfc: Do not fail on TS errors
|
|
27
|
+
- @forge/cli-shared@2.2.2
|
|
28
|
+
- @forge/lint@3.0.1
|
|
29
|
+
|
|
30
|
+
## 3.0.0-next.10
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- 04fcd8c7: Add direct dependencies to fix reslove issue
|
|
35
|
+
|
|
36
|
+
## 3.0.0-next.9
|
|
37
|
+
|
|
38
|
+
### Minor Changes
|
|
39
|
+
|
|
40
|
+
- 057cdfcc: Fix webpack exportsFields config
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- @forge/cli-shared@2.2.2-next.6
|
|
45
|
+
- @forge/lint@3.0.1-next.6
|
|
46
|
+
|
|
3
47
|
## 3.0.0-next.8
|
|
4
48
|
|
|
5
49
|
### Patch 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: [
|
|
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.
|
|
3
|
+
"version": "3.0.1-next.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.3.0-next.0",
|
|
24
|
+
"@forge/lint": "3.0.2-next.0",
|
|
23
25
|
"babel-loader": "^8.2.3",
|
|
24
|
-
"
|
|
25
|
-
"@forge/lint": "3.0.1-next.5",
|
|
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",
|