@forge/bundler 6.1.18-next.1 → 6.1.18-next.11

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,88 @@
1
1
  # @forge/bundler
2
2
 
3
+ ## 6.1.18-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a684b69]
8
+ - @forge/cli-shared@8.15.1-next.9
9
+ - @forge/lint@5.15.0-next.10
10
+
11
+ ## 6.1.18-next.10
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [8246b16]
16
+ - @forge/manifest@12.1.0-next.5
17
+ - @forge/cli-shared@8.15.1-next.8
18
+ - @forge/lint@5.15.0-next.9
19
+
20
+ ## 6.1.18-next.9
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [d6c8528]
25
+ - Updated dependencies [62086be]
26
+ - @forge/lint@5.15.0-next.8
27
+
28
+ ## 6.1.18-next.8
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [6247657]
33
+ - @forge/manifest@12.1.0-next.4
34
+ - @forge/cli-shared@8.15.1-next.7
35
+ - @forge/lint@5.14.1-next.7
36
+
37
+ ## 6.1.18-next.7
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies [2b94ed8]
42
+ - @forge/cli-shared@8.15.1-next.6
43
+ - @forge/lint@5.14.1-next.6
44
+
45
+ ## 6.1.18-next.6
46
+
47
+ ### Patch Changes
48
+
49
+ - Updated dependencies [42e069d]
50
+ - @forge/manifest@12.1.0-next.3
51
+ - @forge/cli-shared@8.15.1-next.5
52
+ - @forge/lint@5.14.1-next.5
53
+
54
+ ## 6.1.18-next.5
55
+
56
+ ### Patch Changes
57
+
58
+ - Updated dependencies [c1526eb]
59
+ - @forge/cli-shared@8.15.1-next.4
60
+ - @forge/lint@5.14.1-next.4
61
+
62
+ ## 6.1.18-next.4
63
+
64
+ ### Patch Changes
65
+
66
+ - 475f9a7: Modify forge CLI bundler to conditionally include stats JSON file generation
67
+
68
+ ## 6.1.18-next.3
69
+
70
+ ### Patch Changes
71
+
72
+ - Updated dependencies [e4c143c]
73
+ - @forge/manifest@12.1.0-next.2
74
+ - @forge/cli-shared@8.15.1-next.3
75
+ - @forge/lint@5.14.1-next.3
76
+
77
+ ## 6.1.18-next.2
78
+
79
+ ### Patch Changes
80
+
81
+ - Updated dependencies [fa9b5aa]
82
+ - @forge/manifest@12.1.0-next.1
83
+ - @forge/cli-shared@8.15.1-next.2
84
+ - @forge/lint@5.14.1-next.2
85
+
3
86
  ## 6.1.18-next.1
4
87
 
5
88
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"nativeui.d.ts","sourceRoot":"","sources":["../../src/config/nativeui.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,MAAM,SAAS,CAAC;AAIzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,mBAAmB,EAAe,MAAM,UAAU,CAAC;AAE5D,aAAK,cAAc,GAAG,aAAa,GAAG,MAAM,CAAC,QAAQ,EAAE,mBAAmB,CAAC,CAAC;AAE5E,eAAO,MAAM,sBAAsB,gBAAiB,UAAU,EAAE,eAAe,YAAY,KAAG,cAyE7F,CAAC"}
1
+ {"version":3,"file":"nativeui.d.ts","sourceRoot":"","sources":["../../src/config/nativeui.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,MAAM,SAAS,CAAC;AAIzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,mBAAmB,EAAe,MAAM,UAAU,CAAC;AAE5D,aAAK,cAAc,GAAG,aAAa,GAAG,MAAM,CAAC,QAAQ,EAAE,mBAAmB,CAAC,CAAC;AAE5E,eAAO,MAAM,sBAAsB,gBAAiB,UAAU,EAAE,eAAe,YAAY,KAAG,cAgF7F,CAAC"}
@@ -34,8 +34,15 @@ const getNativeUiBuildConfig = (entrypoints, i18nConfig) => {
34
34
  new html_webpack_plugin_1.default({
35
35
  filename: 'index.html'
36
36
  }),
37
- new webpack_bundle_analyzer_1.BundleAnalyzerPlugin({ analyzerMode: 'disabled', generateStatsFile: true, logLevel: 'silent' })
38
- ],
37
+ process.env.FORGE_INSPECT_ARCHIVE
38
+ ? new webpack_bundle_analyzer_1.BundleAnalyzerPlugin({
39
+ analyzerMode: 'disabled',
40
+ generateStatsFile: true,
41
+ statsFilename: path_1.default.join(process.cwd(), '.forge_app_inspect_stats.json'),
42
+ logLevel: 'silent'
43
+ })
44
+ : null
45
+ ].filter(Boolean),
39
46
  resolve: {
40
47
  extensions: ['.ts', '.tsx', '.js', '.jsx', '.jpg', '.jpeg', '.png', '.gif', '.svg']
41
48
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "6.1.18-next.1",
3
+ "version": "6.1.18-next.11",
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": "8.15.1-next.1",
24
+ "@forge/cli-shared": "8.15.1-next.9",
25
25
  "@forge/i18n": "0.0.7",
26
- "@forge/lint": "5.14.1-next.1",
27
- "@forge/manifest": "12.1.0-next.0",
26
+ "@forge/lint": "5.15.0-next.10",
27
+ "@forge/manifest": "12.1.0-next.5",
28
28
  "babel-loader": "^8.3.0",
29
29
  "cheerio": "^1.1.0",
30
30
  "cross-spawn": "^7.0.6",