@forge/bundler 2.0.0-next.13 → 2.0.1-next.1
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 +34 -0
- package/out/webpack.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @forge/bundler
|
|
2
2
|
|
|
3
|
+
## 2.0.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f27cbfc: Do not fail on TS errors
|
|
8
|
+
|
|
9
|
+
## 2.0.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @forge/cli-shared@2.2.2-next.0
|
|
14
|
+
- @forge/lint@3.0.1-next.0
|
|
15
|
+
|
|
16
|
+
## 2.0.0
|
|
17
|
+
|
|
18
|
+
### Major Changes
|
|
19
|
+
|
|
20
|
+
- 037c31a5: Upgrade webpack from 4 to 5 and other relavent packages to fix the issue for node17+ (openssl change)
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 37f9898: Added process dependency to package with notes in the path resolver
|
|
25
|
+
- 7d0ef8b: Updated ignore plugin params to correctly ignore encoding import for node-fetch
|
|
26
|
+
- Updated dependencies [ffa0050]
|
|
27
|
+
- Updated dependencies [4922d09]
|
|
28
|
+
- Updated dependencies [83ca609]
|
|
29
|
+
- Updated dependencies [037c31a5]
|
|
30
|
+
- Updated dependencies [f5d4a63]
|
|
31
|
+
- Updated dependencies [1f7c428]
|
|
32
|
+
- Updated dependencies [2e70a0b]
|
|
33
|
+
- @forge/lint@3.0.0
|
|
34
|
+
- @forge/babel-plugin-transform-ui@1.1.0
|
|
35
|
+
- @forge/cli-shared@2.2.1
|
|
36
|
+
|
|
3
37
|
## 2.0.0-next.13
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/out/webpack.js
CHANGED
|
@@ -30,7 +30,7 @@ const handleCallback = (err, stats) => {
|
|
|
30
30
|
const isTSError = info.errors.every((e) => e.message.includes('[tsl]'));
|
|
31
31
|
if (isTSError) {
|
|
32
32
|
const formattedErrors = info.errors.map((error) => {
|
|
33
|
-
return error.replace(/\.?.+.tsx?(?!\([0-9]\,[0-9]\))$/gm, '');
|
|
33
|
+
return error.message.replace(/\.?.+.tsx?(?!\([0-9]\,[0-9]\))$/gm, '');
|
|
34
34
|
});
|
|
35
35
|
throw new Error(text_1.Text.typescriptError(formattedErrors));
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bundler",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1-next.1",
|
|
4
4
|
"description": "Default bundler for Forge apps",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Atlassian",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"@babel/plugin-transform-react-jsx": "^7.16.7",
|
|
20
20
|
"@babel/preset-typescript": "^7.16.7",
|
|
21
21
|
"@forge/api": "2.6.0",
|
|
22
|
-
"@forge/babel-plugin-transform-ui": "1.1.0
|
|
22
|
+
"@forge/babel-plugin-transform-ui": "1.1.0",
|
|
23
23
|
"assert": "^2.0.0",
|
|
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.
|
|
28
|
-
"@forge/lint": "3.0.
|
|
27
|
+
"@forge/cli-shared": "2.2.2-next.0",
|
|
28
|
+
"@forge/lint": "3.0.1-next.0",
|
|
29
29
|
"chalk": "^2.4.2",
|
|
30
30
|
"console-browserify": "^1.2.0",
|
|
31
31
|
"crypto-browserify": "^3.12.0",
|