@zumerbox/build 0.8.3 → 0.8.4
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 +7 -0
- package/bin/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
#### [v0.8.4](https://github.com/zumerlab/zumerbox-build/compare/v0.8.3...v0.8.4)
|
6
|
+
|
7
|
+
> 31 May 2025
|
8
|
+
|
9
|
+
- Bumped version [`2466f28`](https://github.com/zumerlab/zumerbox-build/commit/2466f282854ff709f7a5ecd405130c3b8c650777)
|
10
|
+
- fix global name [`dc9b43a`](https://github.com/zumerlab/zumerbox-build/commit/dc9b43a078d35a6366d69a9f967af9bc4a18486c)
|
11
|
+
|
5
12
|
#### [v0.8.3](https://github.com/zumerlab/zumerbox-build/compare/v0.8.2...v0.8.3)
|
6
13
|
|
7
14
|
> 31 May 2025
|
package/bin/index.js
CHANGED
@@ -108,7 +108,7 @@ if (argv.js) {
|
|
108
108
|
}
|
109
109
|
|
110
110
|
if (argv.global) {
|
111
|
-
options.globalName
|
111
|
+
options.globalName = bundlerName;
|
112
112
|
}
|
113
113
|
|
114
114
|
if (argv.module) {
|
@@ -132,7 +132,7 @@ const optionsMinify = {
|
|
132
132
|
};
|
133
133
|
|
134
134
|
if (argv.global) {
|
135
|
-
optionsMinify.globalName
|
135
|
+
optionsMinify.globalName = bundlerName;
|
136
136
|
}
|
137
137
|
if (argv.module) {
|
138
138
|
optionsMinify.outExtension = { '.js': '.mjs' }
|