@aikdna/kdna-cli 0.19.2 → 0.19.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/package.json +2 -2
- package/src/publish.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aikdna/kdna-cli",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.3",
|
|
4
4
|
"description": "KDNA CLI — create, validate, install, and manage domain judgment packages for AI agents.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"lint": "eslint src/ validators/ tests/",
|
|
22
22
|
"format": "prettier --write .",
|
|
23
23
|
"format:check": "prettier --check .",
|
|
24
|
-
"test": "node --test tests/v07-commands.test.js tests/v012-commands.test.js",
|
|
24
|
+
"test": "node --test tests/v07-commands.test.js tests/v012-commands.test.js tests/asset-store.test.js",
|
|
25
25
|
"test:integration": "node --test tests/integration.test.js",
|
|
26
26
|
"test:all": "node --test tests/*.test.js",
|
|
27
27
|
"release:preflight": "node scripts/release-preflight.js",
|
package/src/publish.js
CHANGED
|
@@ -540,7 +540,7 @@ function identityPaths() {
|
|
|
540
540
|
* before hashing). Digest self-reference fields are also excluded. All other files included as-is.
|
|
541
541
|
*/
|
|
542
542
|
function canonicalPayload(srcDir, opts = {}) {
|
|
543
|
-
const files = listPublishEntries(srcDir);
|
|
543
|
+
const files = listPublishEntries(srcDir).sort();
|
|
544
544
|
const parts = [];
|
|
545
545
|
for (const f of files) {
|
|
546
546
|
const full = f === 'mimetype' ? null : path.join(srcDir, f);
|
|
@@ -592,7 +592,7 @@ function manifestForContentDigest(manifest) {
|
|
|
592
592
|
}
|
|
593
593
|
|
|
594
594
|
function sourceContentDigest(srcDir) {
|
|
595
|
-
const files = listPublishEntries(srcDir);
|
|
595
|
+
const files = listPublishEntries(srcDir).sort();
|
|
596
596
|
const parts = [];
|
|
597
597
|
for (const f of files) {
|
|
598
598
|
let buf;
|