onlybuild 1.6.4 → 1.6.6
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 +13 -0
- package/LICENSE +1 -1
- package/dist/bin/index.js +1 -1
- package/dist/package.json +7 -7
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.6.6](https://github.com/neogeek/onlybuild/tree/v1.6.6) - (2025-07-02)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.6.5...v1.6.6)
|
|
6
|
+
|
|
7
|
+
- [hotfix] Updated packages. [#36](https://github.com/neogeek/onlybuild/pull/36)
|
|
8
|
+
- [hotfix] Updated packages. [#35](https://github.com/neogeek/onlybuild/pull/35)
|
|
9
|
+
|
|
10
|
+
## [v1.6.5](https://github.com/neogeek/onlybuild/tree/v1.6.5) - (2025-02-18)
|
|
11
|
+
|
|
12
|
+
[Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.6.4...v1.6.5)
|
|
13
|
+
|
|
14
|
+
- [hotfix] Updated packages. [#34](https://github.com/neogeek/onlybuild/pull/34)
|
|
15
|
+
|
|
3
16
|
## [v1.6.4](https://github.com/neogeek/onlybuild/tree/v1.6.4) - (2024-09-09)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.6.3...v1.6.4)
|
package/LICENSE
CHANGED
package/dist/bin/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import chalk from 'chalk';
|
|
|
6
6
|
import parseCmdArgs from 'parse-cmd-args';
|
|
7
7
|
import { buildFiles, writeFiles } from '../src/build.js';
|
|
8
8
|
import { copyFiles } from '../src/copy.js';
|
|
9
|
-
import pkg from '../package.json'
|
|
9
|
+
import pkg from '../package.json' with { type: 'json' };
|
|
10
10
|
const elapsedTimeLabel = 'Elapsed time';
|
|
11
11
|
console.time(elapsedTimeLabel);
|
|
12
12
|
const args = parseCmdArgs(null, {
|
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.6.
|
|
4
|
+
"version": "1.6.6",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.x"
|
|
7
7
|
},
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"types": "./dist/src/index.d.ts",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"chalk": "5.
|
|
21
|
-
"dotenv": "
|
|
22
|
-
"globby": "14.0
|
|
20
|
+
"chalk": "5.4.1",
|
|
21
|
+
"dotenv": "17.0.1",
|
|
22
|
+
"globby": "14.1.0",
|
|
23
23
|
"parse-cmd-args": "5.0.2",
|
|
24
|
-
"tsx": "4.
|
|
24
|
+
"tsx": "4.20.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@types/node": "
|
|
28
|
-
"typescript": "5.
|
|
27
|
+
"@types/node": "24.0.10",
|
|
28
|
+
"typescript": "5.8.3"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"test": "node --import tsx --test --experimental-test-coverage ./src/*.test.ts",
|
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.6.
|
|
4
|
+
"version": "1.6.6",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.x"
|
|
7
7
|
},
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"types": "./dist/src/index.d.ts",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"chalk": "5.
|
|
21
|
-
"dotenv": "
|
|
22
|
-
"globby": "14.0
|
|
20
|
+
"chalk": "5.4.1",
|
|
21
|
+
"dotenv": "17.0.1",
|
|
22
|
+
"globby": "14.1.0",
|
|
23
23
|
"parse-cmd-args": "5.0.2",
|
|
24
|
-
"tsx": "4.
|
|
24
|
+
"tsx": "4.20.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@types/node": "
|
|
28
|
-
"typescript": "5.
|
|
27
|
+
"@types/node": "24.0.10",
|
|
28
|
+
"typescript": "5.8.3"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"test": "node --import tsx --test --experimental-test-coverage ./src/*.test.ts",
|