@forge/bundler 4.16.3-next.0 → 4.17.0-next.2

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,18 @@
1
1
  # @forge/bundler
2
2
 
3
+ ## 4.17.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - d2eeda0: Use native webpack bundler instead of file loader to bundle image in UI Kit
8
+
9
+ ## 4.16.3-next.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [6b04ab2]
14
+ - @forge/api@3.7.1-next.0
15
+
3
16
  ## 4.16.3-next.0
4
17
 
5
18
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"nativeui.d.ts","sourceRoot":"","sources":["../../src/config/nativeui.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,MAAM,SAAS,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAMtC,eAAO,MAAM,sBAAsB,gBAAiB,UAAU,EAAE,KAAG,aAyElE,CAAC"}
1
+ {"version":3,"file":"nativeui.d.ts","sourceRoot":"","sources":["../../src/config/nativeui.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,MAAM,SAAS,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAMtC,eAAO,MAAM,sBAAsB,gBAAiB,UAAU,EAAE,KAAG,aAqElE,CAAC"}
@@ -43,11 +43,7 @@ const getNativeUiBuildConfig = (entrypoints) => {
43
43
  rules: [
44
44
  {
45
45
  test: /\.(jpe?g|png|gif|svg)$/i,
46
- loader: 'file-loader',
47
- options: {
48
- name: '[name].[contenthash].[ext]',
49
- outputPath: 'assets'
50
- }
46
+ type: 'asset/resource'
51
47
  },
52
48
  { test: /\.tsx?$/, loader: 'ts-loader' },
53
49
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "4.16.3-next.0",
3
+ "version": "4.17.0-next.2",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Atlassian",
@@ -19,7 +19,7 @@
19
19
  "@babel/plugin-transform-optional-chaining": "^7.23.4",
20
20
  "@babel/plugin-transform-react-jsx": "^7.23.4",
21
21
  "@babel/preset-typescript": "^7.23.3",
22
- "@forge/api": "3.7.0",
22
+ "@forge/api": "3.7.1-next.0",
23
23
  "@forge/babel-plugin-transform-ui": "1.1.18",
24
24
  "@forge/cli-shared": "5.0.0",
25
25
  "@forge/lint": "5.2.0-next.0",