arkaik 0.1.2 → 0.2.0
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/LICENSE +21 -0
- package/dist/assets/kritik/library.json +5854 -0
- package/dist/assets/skill/references/schema.md +10 -1
- package/dist/assets/skill/scripts/validate-bundle.js +4 -4
- package/dist/index.js +2196 -119
- package/dist/io.js +681 -52
- package/package.json +3 -2
- package/src/io.ts +18 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arkaik",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Arkaik CLI — link a repository to a hosted product graph, validate and pack bundles, mirror external ref status.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist",
|
|
18
|
-
"src/io.ts"
|
|
18
|
+
"src/io.ts",
|
|
19
|
+
"LICENSE"
|
|
19
20
|
],
|
|
20
21
|
"repository": {
|
|
21
22
|
"type": "git",
|
package/src/io.ts
CHANGED
|
@@ -15,9 +15,26 @@ export {
|
|
|
15
15
|
JOURNAL_SIDECAR,
|
|
16
16
|
journalPathFor,
|
|
17
17
|
archivePathFor,
|
|
18
|
+
archivePathsFor,
|
|
18
19
|
readJournalEvents,
|
|
20
|
+
readFullJournalEvents,
|
|
19
21
|
loadJournalEvents,
|
|
20
22
|
appendJournalEvent,
|
|
23
|
+
ensureJournalBaseline,
|
|
21
24
|
compactSlice,
|
|
22
25
|
} from "./lib/journal-io";
|
|
23
|
-
export {
|
|
26
|
+
export {
|
|
27
|
+
KRITIK_ACTOR,
|
|
28
|
+
VENDORED_PACK,
|
|
29
|
+
resolvePack,
|
|
30
|
+
loadKritikLibrary,
|
|
31
|
+
resolveJournal,
|
|
32
|
+
appendQualityEvents,
|
|
33
|
+
type ResolvedPack,
|
|
34
|
+
} from "./lib/kritik-io";
|
|
35
|
+
export {
|
|
36
|
+
validateBundleAt,
|
|
37
|
+
journalLineErrorLines,
|
|
38
|
+
type BundleValidation,
|
|
39
|
+
type JournalArchiveFinding,
|
|
40
|
+
} from "./lib/bundle-validate";
|