@likecoin/epubcheck-ts 0.2.1 → 0.2.3
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/bin/epubcheck.js +4 -2
- package/bin/epubcheck.ts +8 -6
- package/dist/index.cjs +943 -229
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +943 -229
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -229,6 +229,8 @@ interface ValidationContext {
|
|
|
229
229
|
packageDocument?: PackageDocument;
|
|
230
230
|
/** NCX UID for validation against OPF identifier */
|
|
231
231
|
ncxUid?: string;
|
|
232
|
+
/** Resources referenced in content but not declared in manifest */
|
|
233
|
+
referencedUndeclaredResources?: Set<string>;
|
|
232
234
|
}
|
|
233
235
|
/**
|
|
234
236
|
* Rootfile reference from container.xml
|
package/dist/index.d.ts
CHANGED
|
@@ -229,6 +229,8 @@ interface ValidationContext {
|
|
|
229
229
|
packageDocument?: PackageDocument;
|
|
230
230
|
/** NCX UID for validation against OPF identifier */
|
|
231
231
|
ncxUid?: string;
|
|
232
|
+
/** Resources referenced in content but not declared in manifest */
|
|
233
|
+
referencedUndeclaredResources?: Set<string>;
|
|
232
234
|
}
|
|
233
235
|
/**
|
|
234
236
|
* Rootfile reference from container.xml
|