@forge/bundler 2.0.1-next.2 → 3.0.0-next.6
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 +26 -0
- package/out/webpack.js +1 -1
- package/package.json +4 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @forge/bundler
|
|
2
2
|
|
|
3
|
+
## 3.0.0-next.6
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 60fcb01: Use versions of polyfills from earlier versions of @forge/cli
|
|
8
|
+
|
|
9
|
+
## 2.1.0-next.5
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 1f6cf083: Fix webpack devtool config in debugMode
|
|
14
|
+
|
|
15
|
+
## 2.0.1-next.4
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @forge/cli-shared@2.2.2-next.3
|
|
20
|
+
- @forge/lint@3.0.1-next.3
|
|
21
|
+
|
|
22
|
+
## 2.0.1-next.3
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- @forge/cli-shared@2.2.2-next.2
|
|
27
|
+
- @forge/lint@3.0.1-next.2
|
|
28
|
+
|
|
3
29
|
## 2.0.1-next.2
|
|
4
30
|
|
|
5
31
|
### 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-
|
|
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": "
|
|
3
|
+
"version": "3.0.0-next.6",
|
|
4
4
|
"description": "Default bundler for Forge apps",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Atlassian",
|
|
@@ -20,30 +20,17 @@
|
|
|
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
|
-
"assert": "^2.0.0",
|
|
24
23
|
"babel-loader": "^8.2.3",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"@forge/cli-shared": "2.2.2-next.1",
|
|
28
|
-
"@forge/lint": "3.0.1-next.1",
|
|
24
|
+
"@forge/cli-shared": "2.2.2-next.3",
|
|
25
|
+
"@forge/lint": "3.0.1-next.3",
|
|
29
26
|
"chalk": "^2.4.2",
|
|
30
|
-
"console-browserify": "^1.2.0",
|
|
31
|
-
"crypto-browserify": "^3.12.0",
|
|
32
|
-
"events": "^3.3.0",
|
|
33
27
|
"memfs": "^3.4.1",
|
|
34
|
-
"
|
|
35
|
-
"path-browserify": "^1.0.0",
|
|
36
|
-
"process": "^0.11.10",
|
|
37
|
-
"punycode": "^2.1.1",
|
|
28
|
+
"node-libs-browser": "^2.2.1",
|
|
38
29
|
"querystring-browser": "^1.0.4",
|
|
39
30
|
"readable-stream": "^3.4.0",
|
|
40
|
-
"string_decoder": "^1.3.0",
|
|
41
31
|
"text-encoder-lite": "^2.0.0",
|
|
42
|
-
"timers-browserify": "^2.0.12",
|
|
43
32
|
"ts-loader": "^9.2.6",
|
|
44
33
|
"typescript": "^3.9.7",
|
|
45
|
-
"url": "^0.11.0",
|
|
46
|
-
"util": "^0.12.4",
|
|
47
34
|
"webpack": "^5.66.0",
|
|
48
35
|
"whatwg-url": "^7.0.0"
|
|
49
36
|
},
|