@forge/bundler 4.6.8-next.0 → 4.6.8-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 +15 -0
- package/out/config/node.d.ts.map +1 -1
- package/out/config/node.js +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/bundler
|
|
2
2
|
|
|
3
|
+
## 4.6.8-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 79d5311: Allow omitting extensions in ESM imports on Node runtime
|
|
8
|
+
- @forge/cli-shared@3.11.2-next.2
|
|
9
|
+
- @forge/lint@3.3.2-next.2
|
|
10
|
+
|
|
11
|
+
## 4.6.8-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- @forge/cli-shared@3.11.2-next.1
|
|
16
|
+
- @forge/lint@3.3.2-next.1
|
|
17
|
+
|
|
3
18
|
## 4.6.8-next.0
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/out/config/node.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/config/node.ts"],"names":[],"mappings":"AACA,OAAO,EACL,mBAAmB,EACnB,aAAa,EACb,mBAAmB,EAIpB,MAAM,UAAU,CAAC;AAElB,eAAO,MAAM,wBAAwB,iBAAiB,CAAC;AAYvD,eAAO,MAAM,yBAAyB,gBACvB,mBAAmB,EAAE,UAC1B,aAAa,KACpB,
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/config/node.ts"],"names":[],"mappings":"AACA,OAAO,EACL,mBAAmB,EACnB,aAAa,EACb,mBAAmB,EAIpB,MAAM,UAAU,CAAC;AAElB,eAAO,MAAM,wBAAwB,iBAAiB,CAAC;AAYvD,eAAO,MAAM,yBAAyB,gBACvB,mBAAmB,EAAE,UAC1B,aAAa,KACpB,mBA6DF,CAAC"}
|
package/out/config/node.js
CHANGED
|
@@ -33,6 +33,12 @@ const getNodeRuntimeBuildConfig = (entrypoints, config) => {
|
|
|
33
33
|
raw: true
|
|
34
34
|
}));
|
|
35
35
|
webpackConfig.name = exports.NODE_WEBPACK_CONFIG_NAME;
|
|
36
|
+
webpackConfig.module.rules.push({
|
|
37
|
+
test: /\.m?js$/,
|
|
38
|
+
resolve: {
|
|
39
|
+
fullySpecified: false
|
|
40
|
+
}
|
|
41
|
+
});
|
|
36
42
|
return webpackConfig;
|
|
37
43
|
};
|
|
38
44
|
exports.getNodeRuntimeBuildConfig = getNodeRuntimeBuildConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bundler",
|
|
3
|
-
"version": "4.6.8-next.
|
|
3
|
+
"version": "4.6.8-next.2",
|
|
4
4
|
"description": "Default bundler for Forge apps",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Atlassian",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"@babel/preset-typescript": "^7.16.7",
|
|
21
21
|
"@forge/api": "2.15.2",
|
|
22
22
|
"@forge/babel-plugin-transform-ui": "1.1.2",
|
|
23
|
-
"@forge/cli-shared": "3.11.2-next.
|
|
24
|
-
"@forge/lint": "3.3.2-next.
|
|
23
|
+
"@forge/cli-shared": "3.11.2-next.2",
|
|
24
|
+
"@forge/lint": "3.3.2-next.2",
|
|
25
25
|
"@forge/runtime": "4.3.3",
|
|
26
26
|
"@forge/util": "1.2.3",
|
|
27
27
|
"assert": "^1.1.1",
|