onlybuild 1.4.0 → 1.4.1

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.4.1](https://github.com/neogeek/onlybuild/tree/v1.4.1) - (2024-05-09)
4
+
5
+ [Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.4.0...v1.4.1)
6
+
7
+ - [hotfix] Added missing flag to pass options in shebang line. [#19](https://github.com/neogeek/onlybuild/pull/19)
8
+
3
9
  ## [v1.4.0](https://github.com/neogeek/onlybuild/tree/v1.4.0) - (2024-05-08)
4
10
 
5
11
  [Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.3.0...v1.4.0)
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node --no-warnings
1
+ #!/usr/bin/env -S node --no-warnings
2
2
  import 'dotenv/config';
3
3
  import 'tsx/esm';
4
4
  export {};
package/dist/bin/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node --no-warnings
1
+ #!/usr/bin/env -S node --no-warnings
2
2
  import 'dotenv/config';
3
3
  import 'tsx/esm';
4
4
  import { globby } from 'globby';
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onlybuild",
3
3
  "description": "A zero-config cli for building static websites.",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "engines": {
6
6
  "node": ">=20.x"
7
7
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onlybuild",
3
3
  "description": "A zero-config cli for building static websites.",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "engines": {
6
6
  "node": ">=20.x"
7
7
  },