@zumerbox/build 0.8.0 → 0.8.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
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ #### [v0.8.2](https://github.com/zumerlab/zumerbox-build/compare/v0.8.1...v0.8.2)
6
+
7
+ > 25 April 2025
8
+
9
+ - fix ext [`0b703b4`](https://github.com/zumerlab/zumerbox-build/commit/0b703b4b3865147ba8c29e7d4b7afc1a6aba7110)
10
+ - Bumped version [`548d951`](https://github.com/zumerlab/zumerbox-build/commit/548d951d26e51bc41b096d556cf3cf1478036b5f)
11
+
12
+ #### [v0.8.1](https://github.com/zumerlab/zumerbox-build/compare/v0.8.0...v0.8.1)
13
+
14
+ > 25 April 2025
15
+
16
+ - fix ext [`63b1a52`](https://github.com/zumerlab/zumerbox-build/commit/63b1a5228f3624732f3610303578f9a20d4e9bbc)
17
+ - Bumped version [`54c48be`](https://github.com/zumerlab/zumerbox-build/commit/54c48bea1ced5bc4ac94aa5e528afb4b1c8a367d)
18
+
5
19
  #### [v0.8.0](https://github.com/zumerlab/zumerbox-build/compare/v0.7.0...v0.8.0)
6
20
 
7
21
  > 25 April 2025
package/bin/index.js CHANGED
@@ -48,7 +48,7 @@ const argv = yargs
48
48
  default: false
49
49
  })
50
50
  .option('module', {
51
- alias: 'm',
51
+ alias: 'x',
52
52
  describe: 'Set mjs extension',
53
53
  type: 'boolean',
54
54
  default: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zumerbox/build",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "",
5
5
  "author": "Juan Martin Muda",
6
6
  "license": "MIT",
@@ -9,7 +9,6 @@
9
9
  "build": "bin/index.js"
10
10
  },
11
11
  "scripts": {
12
- "start": "node bin/index.js",
13
12
  "bump": "npx @zumerbox/bump",
14
13
  "postbump": "npx @zumerbox/changelog && git add CHANGELOG.md && git commit -m \"Bumped version\" && git push --follow-tags"
15
14
  },