@thi.ng/block-fs 0.6.17 → 0.6.19

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,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-09-01T16:38:35Z
3
+ - **Last updated**: 2025-09-26T11:53:06Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
11
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
12
  and/or version bumps of transitive dependencies.
13
13
 
14
+ ### [0.6.18](https://github.com/thi-ng/umbrella/tree/@thi.ng/block-fs@0.6.18) (2025-09-26)
15
+
16
+ #### ♻️ Refactoring
17
+
18
+ - update CLI arg specs ([691ea5d](https://github.com/thi-ng/umbrella/commit/691ea5d))
19
+
14
20
  ### [0.6.11](https://github.com/thi-ng/umbrella/tree/@thi.ng/block-fs@0.6.11) (2025-08-06)
15
21
 
16
22
  #### ♻️ Refactoring
package/cli/api.d.ts CHANGED
@@ -11,6 +11,7 @@ export declare const ARG_BLOCKSIZE: {
11
11
  default: number;
12
12
  coerce: (x: string) => import("@thi.ng/binary").Pow2;
13
13
  } & {
14
+ type: "int";
14
15
  coerce: import("@thi.ng/api").Fn<string, number>;
15
16
  hint: string;
16
17
  group: string;
package/cli/convert.js CHANGED
@@ -13,13 +13,12 @@ const CONVERT = {
13
13
  ...ARG_BLOCKSIZE,
14
14
  numBlocks: int({
15
15
  alias: "n",
16
- desc: "Number of blocks (multiple of 8)",
17
- optional: true
16
+ desc: "Number of blocks (multiple of 8)"
18
17
  }),
19
18
  out: string({
20
19
  alias: "o",
21
20
  desc: "Output file path",
22
- optional: false
21
+ required: true
23
22
  }),
24
23
  exclude: strings({
25
24
  alias: "e",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/block-fs",
3
- "version": "0.6.17",
3
+ "version": "0.6.19",
4
4
  "description": "Customizable block-based storage, adapters & file system layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@thi.ng/api": "^8.12.2",
46
- "@thi.ng/args": "^2.10.2",
46
+ "@thi.ng/args": "^3.1.0",
47
47
  "@thi.ng/binary": "^3.4.60",
48
48
  "@thi.ng/bitfield": "^2.4.13",
49
49
  "@thi.ng/checks": "^3.7.18",
@@ -143,5 +143,5 @@
143
143
  "status": "alpha",
144
144
  "year": 2024
145
145
  },
146
- "gitHead": "3c3531350eec56011982583c694aeb1a2e0d0ff4\n"
146
+ "gitHead": "d86306c5375d19fa95bc900e433d097226516b1e\n"
147
147
  }