@taprootio/docs-artifact 1.1.0 → 1.1.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/package.json +1 -1
- package/src/prebuilt-archive.js +2 -0
package/package.json
CHANGED
package/src/prebuilt-archive.js
CHANGED
|
@@ -3,6 +3,8 @@ import { createHash } from "node:crypto";
|
|
|
3
3
|
import { PREBUILT_ARCHIVE_FORMAT, PREBUILT_LIMITS, PREBUILT_MANIFEST_FILE_NAME } from "./prebuilt-constants.js";
|
|
4
4
|
import { serializePrebuiltManifest } from "./prebuilt-manifest-validator.js";
|
|
5
5
|
|
|
6
|
+
export { DocsArtifactValidationError } from "./errors.js";
|
|
7
|
+
|
|
6
8
|
const TAR_BLOCK_BYTES = 512;
|
|
7
9
|
const DEFLATE_STORED_BLOCK_BYTES = 65_535;
|
|
8
10
|
const GZIP_HEADER = Uint8Array.from([0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff]);
|