@forge/bundler 7.2.1-next.8 → 7.2.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 +49 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @forge/bundler
|
|
2
2
|
|
|
3
|
+
## 7.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0795370: Accept `.cjs` function handler files
|
|
8
|
+
- a9b3d2b: Pin `webpack` to 5.109.2.
|
|
9
|
+
|
|
10
|
+
webpack 5.110.0 enables its new built-in HTML minimizer by default (`experiments.html` defaults to `"auto"`), which minifies the `index.html` emitted by `html-webpack-plugin` for UI Kit resources with `removeImpliedTags: "smart"` — dropping the `<html>` start tag. Packaging then rejects the bundle with "Invalid index.html file. Make sure the index.html file has the `<html>` root element." 5.109.2 is the newest release before that change.
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [2521b54]
|
|
13
|
+
- Updated dependencies [a804b36]
|
|
14
|
+
- Updated dependencies [db66d54]
|
|
15
|
+
- Updated dependencies [1360df2]
|
|
16
|
+
- Updated dependencies [b7996ba]
|
|
17
|
+
- Updated dependencies [40260f5]
|
|
18
|
+
- Updated dependencies [0795370]
|
|
19
|
+
- Updated dependencies [f2c080f]
|
|
20
|
+
- Updated dependencies [2efeacb]
|
|
21
|
+
- Updated dependencies [c62c72a]
|
|
22
|
+
- Updated dependencies [6479f6e]
|
|
23
|
+
- @forge/cli-shared@9.5.0
|
|
24
|
+
- @forge/manifest@13.4.0
|
|
25
|
+
- @forge/lint@6.2.1
|
|
26
|
+
|
|
27
|
+
## 7.2.1-next.11
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- a9b3d2b: Pin `webpack` to 5.109.2.
|
|
32
|
+
|
|
33
|
+
webpack 5.110.0 enables its new built-in HTML minimizer by default (`experiments.html` defaults to `"auto"`), which minifies the `index.html` emitted by `html-webpack-plugin` for UI Kit resources with `removeImpliedTags: "smart"` — dropping the `<html>` start tag. Packaging then rejects the bundle with "Invalid index.html file. Make sure the index.html file has the `<html>` root element." 5.109.2 is the newest release before that change.
|
|
34
|
+
|
|
35
|
+
## 7.2.1-next.10
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [6479f6e]
|
|
40
|
+
- @forge/manifest@13.4.0-next.6
|
|
41
|
+
- @forge/cli-shared@9.5.0-next.10
|
|
42
|
+
- @forge/lint@6.2.1-next.10
|
|
43
|
+
|
|
44
|
+
## 7.2.1-next.9
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- Updated dependencies [2efeacb]
|
|
49
|
+
- @forge/cli-shared@9.5.0-next.9
|
|
50
|
+
- @forge/lint@6.2.1-next.9
|
|
51
|
+
|
|
3
52
|
## 7.2.1-next.8
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bundler",
|
|
3
|
-
"version": "7.2.1
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"description": "Default bundler for Forge apps",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "Atlassian",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
22
22
|
"@babel/traverse": "^7.24.0",
|
|
23
23
|
"@babel/types": "^7.24.0",
|
|
24
|
-
"@forge/cli-shared": "9.
|
|
24
|
+
"@forge/cli-shared": "9.5.0",
|
|
25
25
|
"@forge/i18n": "1.0.0",
|
|
26
|
-
"@forge/lint": "6.2.1
|
|
27
|
-
"@forge/manifest": "13.4.0
|
|
26
|
+
"@forge/lint": "6.2.1",
|
|
27
|
+
"@forge/manifest": "13.4.0",
|
|
28
28
|
"babel-loader": "^8.3.0",
|
|
29
29
|
"cheerio": "^1.2.0",
|
|
30
30
|
"chokidar": "^4.0.3",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"ts-loader": "^9.5.2",
|
|
38
38
|
"type-fest": "4.10.2",
|
|
39
39
|
"typescript": "5.9.2",
|
|
40
|
-
"webpack": "
|
|
40
|
+
"webpack": "5.109.2",
|
|
41
41
|
"webpack-bundle-analyzer": "^4.10.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|