@blamejs/core 0.12.20 → 0.12.22
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 +4 -0
- package/lib/backup/index.js +206 -0
- package/package.json +1 -1
- package/sbom.cdx.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ upgrading across more than a few patches at a time.
|
|
|
8
8
|
|
|
9
9
|
## v0.12.x
|
|
10
10
|
|
|
11
|
+
- v0.12.22 (2026-05-24) — **`bundleAdapterStorage.rewrapAllBundles(opts)` — bounded-parallel batch envelope rotation with mixed-storage skip semantics.** Batch wrapper over the v0.12.21 rewrapBundle primitive. `storage.rewrapAllBundles(opts?)` iterates `listBundles()` + rotates each bundle's wrap envelope through a bounded-parallel pool (default 4 workers). Plaintext bundles + directory-format bundles get skipped cleanly (recorded as `status: "skipped"` with a `reason` field); rewrap failures get bucketed into `status: "failed"`. Operators completing a key-rotation event across an entire backup repository now have a single call that handles mixed-strategy storage correctly. `opts.newRecipient` / `opts.newPassphrase` / `opts.oldRecipient` / `opts.oldPassphrase` / `opts.concurrency` / `opts.stopOnFirstFailure` mirror the verifyAllBundles + rewrapBundle surface. **Added:** *`storage.rewrapAllBundles(opts?)` — batch envelope rotation* — Iterates listBundles() + dispatches each bundle through rewrapBundle with the operator-supplied new key. Returns `{ total, rotated, skipped, failed, results }` where the per-bundle results carry `{ status: "rotated" | "skipped" | "failed", oldEnvelopeKind, newEnvelopeKind, reason }`. Bounded-parallel fan-out (default 4) keeps the storage backend under control; opts.stopOnFirstFailure short-circuits on the first rotation that throws an unexpected error (skips don't trip the short-circuit — they're expected for mixed-strategy storage). Plaintext + directory bundles skipped with `reason: "format-not-wrappable"` / `reason: "no-envelope"` rather than reported as failures.
|
|
12
|
+
|
|
13
|
+
- v0.12.21 (2026-05-24) — **`bundleAdapterStorage.rewrapBundle(bundleId, opts)` — key rotation without restore + rewrite of inner archive bytes.** `storage.rewrapBundle(bundleId, opts?)` rotates a bundle's wrap envelope under a new recipient keypair or passphrase WITHOUT touching the inner tar / tar.gz bytes. Operators rotating a compromised keypair, migrating to a new HSM, or refreshing passphrases on a HIPAA-posture repository previously had to `readBundle` → write to a stage dir → `writeBundle` under the new key — three byte-walks of the bundle payload, two filesystem touches, transient plaintext on disk. rewrapBundle does it as unwrap + rewrap in memory: zero disk plaintext, one round-trip through the wrap layer, the gzipped tar archive bytes inside the envelope are never inflated. Cross-kind rotation (recipient ↔ passphrase) is refused — that's a separate migration the operator configures with explicit cryptoStrategy switch. **Added:** *`storage.rewrapBundle(bundleId, opts?)` — in-place envelope rotation* — Unwraps the bundle under the old key (storage's configured recipient/passphrase OR `opts.oldRecipient` / `opts.oldPassphrase`), re-wraps under the new key (`opts.newRecipient` / `opts.newPassphrase`), writes the rewrapped bytes back to the same storage key. Returns `{ bundleId, oldEnvelopeKind, newEnvelopeKind, bytesRewritten }`. Plaintext bundles refused with `backup/no-envelope-to-rewrap`; cross-kind rotation refused with `backup/no-new-recipient` / `backup/no-new-passphrase`. The inner archive bytes (the gz-compressed tar payload) are never decompressed or re-encoded — rewrap is a wrap-layer-only operation. **Security:** *Zero plaintext on disk during rotation* — The inner tar bytes flow only through memory — old-envelope unwrap → new-envelope wrap → adapter writeFile. Operators previously rotating via readBundle + writeBundle wrote plaintext archive bytes to a temporary stage directory; rewrapBundle removes that exposure window entirely. Matches the operator-side discipline that backup payloads should never land on disk in plaintext form during steady-state operations.
|
|
14
|
+
|
|
11
15
|
- v0.12.20 (2026-05-24) — **`bundleAdapterStorage.verifyAllBundles(opts)` — bounded-parallel batch integrity walk with stopOnFirstFailure short-circuit.** Batch wrapper over the v0.12.19 verifyBundle primitive. `storage.verifyAllBundles(opts?)` iterates `listBundles()` + walks each bundle with a bounded-parallel pool. Returns `{ total, ok, failed, results }` where `results` carries every per-bundle verifyBundle output (including bundleId, format, envelopeKind, entryCount, errors). `opts.concurrency` defaults to 4 (gentle on the storage backend); `opts.stopOnFirstFailure` short-circuits the walk when an unhealthy bundle is found (default off — operators want the full health report). `opts.recipient` / `opts.passphrase` forwarded to every per-bundle verify call. Operators wiring a periodic cron job over a backup repository now have a single primitive to call instead of hand-rolling the listBundles loop. **Added:** *`storage.verifyAllBundles(opts?)` — batch integrity walk* — Iterates `listBundles()` + calls `verifyBundle(bundleId, opts)` on each. Bounded-parallel fan-out (default 4 workers; `opts.concurrency` raises or lowers); each worker pulls from a shared queue + the warm-up keeps `concurrency` workers in flight until the queue drains. Returns the aggregate `{ total, ok, failed, results }` with `results` sorted by bundleId so the report is stable across runs regardless of completion order. `opts.stopOnFirstFailure` short-circuits the walk when the first unhealthy bundle is found — useful for fast-fail CI gates that don't need to enumerate every failure.
|
|
12
16
|
|
|
13
17
|
- v0.12.19 (2026-05-24) — **`bundleAdapterStorage.verifyBundle(bundleId)` — bundle integrity check without restore + `b.safeArchive.inspect` tar.gz support.** `storage.verifyBundle(bundleId, opts?)` walks a bundle without restoring it: confirms the payload exists, the envelope (if any) decrypts under the supplied key, and the inner tar / tar.gz walker enumerates every entry without writing to disk. Returns `{ ok, format, envelopeKind, entryCount, errors }` — operators wanting periodic health-check of a backup repository call verifyBundle across `listBundles()` and aggregate `ok === false` results. Composes the bundle's known format directly through the unwrap → gunzip → tar pipeline (skips safeArchive's auto-sniff because the bundle's format is already known from bundleInfo). `b.safeArchive.inspect` separately gains `format: "tar.gz"` dispatch — operators with a known tar.gz payload now get entry enumeration without extracting. **Added:** *`storage.verifyBundle(bundleId, opts?)` — integrity check without restore* — Composes bundleInfo for format/envelope detection + the unwrap → gunzip → tar walker chain directly. opts.recipient / opts.passphrase override the storage's configured keys (useful for verifying a bundle under a different key set than the storage was opened with — e.g. verifying that a key rotation candidate can still read a bundle). Wrong key / corrupted payload returns `ok: false` with a typed error code in the errors array rather than throwing. Directory format reports ok=true based on manifest existence + readability (the inspect walker doesn't apply). · *`b.safeArchive.inspect` accepts `format: "tar.gz"`* — Mirrors the v0.12.9 extract surface: operators handed a `.tar.gz` payload can now enumerate entries without extracting. Composes `b.archive.read.gz` + `.asTar()` internally so the same bomb caps apply (1 GiB output / 100× ratio default) to inspect calls.
|
package/lib/backup/index.js
CHANGED
|
@@ -1532,6 +1532,105 @@ function bundleAdapterStorage(opts) {
|
|
|
1532
1532
|
};
|
|
1533
1533
|
}
|
|
1534
1534
|
},
|
|
1535
|
+
// rewrapBundle(bundleId, opts) — v0.12.21 key rotation
|
|
1536
|
+
// without restore + rewrite. Unwraps the bundle under the old
|
|
1537
|
+
// key + re-wraps under the new key. Inner tar / tar.gz bytes
|
|
1538
|
+
// are never decompressed or rewritten. Operators rotating
|
|
1539
|
+
// recipient keypairs avoid the full restore-to-disk → rewrite
|
|
1540
|
+
// cycle. Returns `{ bundleId, oldEnvelopeKind, newEnvelopeKind,
|
|
1541
|
+
// bytesRewritten }`. Refuses cross-kind rotation (recipient ↔
|
|
1542
|
+
// passphrase) — that's a separate migration the operator
|
|
1543
|
+
// configures explicitly.
|
|
1544
|
+
async rewrapBundle(bundleId, rwOpts) {
|
|
1545
|
+
rwOpts = rwOpts || {};
|
|
1546
|
+
_ensureBundleId(bundleId);
|
|
1547
|
+
var info = await this.bundleInfo(bundleId);
|
|
1548
|
+
if (info.format !== "tar" && info.format !== "tar.gz") {
|
|
1549
|
+
throw new BackupError("backup/format-not-wrappable",
|
|
1550
|
+
"rewrapBundle: '" + bundleId + "' has format=" + JSON.stringify(info.format) +
|
|
1551
|
+
" — only tar / tar.gz bundles carry wrap envelopes");
|
|
1552
|
+
}
|
|
1553
|
+
var rwKeySuffix = info.format === "tar.gz" ? TAR_GZ_KEY_SUFFIX : TAR_KEY_SUFFIX;
|
|
1554
|
+
var sealed = await adapter.readFile(bundleId + rwKeySuffix);
|
|
1555
|
+
var envelopeKind = info.envelopeKind;
|
|
1556
|
+
// Codex P2 on v0.12.21 PR #172 — when the adapter has no
|
|
1557
|
+
// readPartial capability, bundleInfo returns envelopeKind:
|
|
1558
|
+
// "unknown" rather than risk a full payload load. For
|
|
1559
|
+
// rewrap, we already have to load the payload (to unwrap),
|
|
1560
|
+
// so fall back to a sniffEnvelope on the loaded sealed
|
|
1561
|
+
// bytes — fixes the regression where adapters satisfying
|
|
1562
|
+
// the minimum contract couldn't use rewrapBundle.
|
|
1563
|
+
if (envelopeKind === "unknown") {
|
|
1564
|
+
envelopeKind = archiveLazy().sniffEnvelope(sealed);
|
|
1565
|
+
}
|
|
1566
|
+
if (envelopeKind !== "recipient" && envelopeKind !== "passphrase") {
|
|
1567
|
+
throw new BackupError("backup/no-envelope-to-rewrap",
|
|
1568
|
+
"rewrapBundle: '" + bundleId + "' carries envelopeKind=" +
|
|
1569
|
+
JSON.stringify(envelopeKind) + " — nothing to rewrap");
|
|
1570
|
+
}
|
|
1571
|
+
// Override the info.envelopeKind we use below so the
|
|
1572
|
+
// dispatch + return shape reflect the actual envelope we
|
|
1573
|
+
// detected (matters when bundleInfo returned "unknown").
|
|
1574
|
+
info = Object.assign({}, info, { envelopeKind: envelopeKind });
|
|
1575
|
+
var inner;
|
|
1576
|
+
if (info.envelopeKind === "recipient") {
|
|
1577
|
+
var oldRcp = rwOpts.oldRecipient !== undefined ? rwOpts.oldRecipient : recipient;
|
|
1578
|
+
if (!oldRcp) {
|
|
1579
|
+
throw new BackupError("backup/no-old-recipient",
|
|
1580
|
+
"rewrapBundle: opts.oldRecipient (or the storage's configured recipient) is required to unwrap");
|
|
1581
|
+
}
|
|
1582
|
+
if (!rwOpts.newRecipient || typeof rwOpts.newRecipient !== "object") {
|
|
1583
|
+
throw new BackupError("backup/no-new-recipient",
|
|
1584
|
+
"rewrapBundle: opts.newRecipient is required to re-seal under the rotated key");
|
|
1585
|
+
}
|
|
1586
|
+
inner = archiveLazy().unwrap(sealed, { recipient: oldRcp });
|
|
1587
|
+
var resealed = archiveLazy().wrap(inner, { recipient: rwOpts.newRecipient });
|
|
1588
|
+
await adapter.writeFile(bundleId + rwKeySuffix, resealed);
|
|
1589
|
+
return {
|
|
1590
|
+
bundleId: bundleId,
|
|
1591
|
+
oldEnvelopeKind: "recipient",
|
|
1592
|
+
newEnvelopeKind: "recipient",
|
|
1593
|
+
bytesRewritten: resealed.length,
|
|
1594
|
+
};
|
|
1595
|
+
}
|
|
1596
|
+
// passphrase
|
|
1597
|
+
var oldPass = rwOpts.oldPassphrase !== undefined ? rwOpts.oldPassphrase : passphrase;
|
|
1598
|
+
if (typeof oldPass !== "string" && !Buffer.isBuffer(oldPass)) {
|
|
1599
|
+
throw new BackupError("backup/no-old-passphrase",
|
|
1600
|
+
"rewrapBundle: opts.oldPassphrase (or the storage's configured passphrase) is required to unwrap");
|
|
1601
|
+
}
|
|
1602
|
+
if (typeof rwOpts.newPassphrase !== "string" && !Buffer.isBuffer(rwOpts.newPassphrase)) {
|
|
1603
|
+
throw new BackupError("backup/no-new-passphrase",
|
|
1604
|
+
"rewrapBundle: opts.newPassphrase is required (string or Buffer) to re-seal");
|
|
1605
|
+
}
|
|
1606
|
+
inner = await archiveLazy().unwrapWithPassphrase(sealed, { passphrase: oldPass });
|
|
1607
|
+
// Codex P1 on v0.12.21 PR #172 — preserve the storage's
|
|
1608
|
+
// configured entropy floor across rewrap. The
|
|
1609
|
+
// writeBundle path raises the floor to 128 bits under
|
|
1610
|
+
// HIPAA / PCI-DSS postures (per
|
|
1611
|
+
// BACKUP_ENCRYPTION_REQUIRED_POSTURES); rewrapBundle MUST
|
|
1612
|
+
// apply the same floor so a rotated passphrase that
|
|
1613
|
+
// writeBundle would refuse can't slip through. The
|
|
1614
|
+
// operator's explicit rwOpts.passphraseMinEntropyBits
|
|
1615
|
+
// can raise the floor further but cannot lower it.
|
|
1616
|
+
var effectiveFloor = passphraseMinEntropyBits; // storage's posture-effective floor
|
|
1617
|
+
if (typeof rwOpts.passphraseMinEntropyBits === "number" &&
|
|
1618
|
+
Number.isFinite(rwOpts.passphraseMinEntropyBits) &&
|
|
1619
|
+
rwOpts.passphraseMinEntropyBits > effectiveFloor) {
|
|
1620
|
+
effectiveFloor = Math.floor(rwOpts.passphraseMinEntropyBits);
|
|
1621
|
+
}
|
|
1622
|
+
var resealedP = await archiveLazy().wrapWithPassphrase(inner, {
|
|
1623
|
+
passphrase: rwOpts.newPassphrase,
|
|
1624
|
+
minEntropyBits: effectiveFloor,
|
|
1625
|
+
});
|
|
1626
|
+
await adapter.writeFile(bundleId + rwKeySuffix, resealedP);
|
|
1627
|
+
return {
|
|
1628
|
+
bundleId: bundleId,
|
|
1629
|
+
oldEnvelopeKind: "passphrase",
|
|
1630
|
+
newEnvelopeKind: "passphrase",
|
|
1631
|
+
bytesRewritten: resealedP.length,
|
|
1632
|
+
};
|
|
1633
|
+
},
|
|
1535
1634
|
// verifyAllBundles(opts?) — v0.12.20 batch integrity check.
|
|
1536
1635
|
// Iterates listBundles() + calls verifyBundle on each. Returns
|
|
1537
1636
|
// `{ total, ok, failed, results }` where `results` is an array
|
|
@@ -1541,6 +1640,113 @@ function bundleAdapterStorage(opts) {
|
|
|
1541
1640
|
// unhealthy bundle is found (default false — operators want
|
|
1542
1641
|
// the full report). opts.recipient / opts.passphrase forwarded
|
|
1543
1642
|
// to verifyBundle for each bundle.
|
|
1643
|
+
// rewrapAllBundles(opts) — v0.12.22 batch wrapper over the
|
|
1644
|
+
// v0.12.21 rewrapBundle primitive. Iterates listBundles() +
|
|
1645
|
+
// rewraps each through a bounded-parallel pool, skipping
|
|
1646
|
+
// plaintext / directory bundles cleanly. Returns
|
|
1647
|
+
// `{ total, rotated, skipped, failed, results }` where the
|
|
1648
|
+
// results array carries per-bundle `{ status: "rotated" |
|
|
1649
|
+
// "skipped" | "failed", ... }`. opts.concurrency /
|
|
1650
|
+
// opts.stopOnFirstFailure mirror verifyAllBundles.
|
|
1651
|
+
// opts.newRecipient / opts.newPassphrase /
|
|
1652
|
+
// opts.oldRecipient / opts.oldPassphrase forwarded to each
|
|
1653
|
+
// per-bundle rewrap.
|
|
1654
|
+
async rewrapAllBundles(opts) {
|
|
1655
|
+
opts = opts || {};
|
|
1656
|
+
var concurrency = 4; // allow:raw-byte-literal — default fan-out, not byte count
|
|
1657
|
+
if (typeof opts.concurrency === "number" && Number.isFinite(opts.concurrency) &&
|
|
1658
|
+
opts.concurrency > 0) {
|
|
1659
|
+
concurrency = Math.max(1, Math.floor(opts.concurrency));
|
|
1660
|
+
}
|
|
1661
|
+
var stopOnFirst = opts.stopOnFirstFailure === true;
|
|
1662
|
+
var list = await this.listBundles();
|
|
1663
|
+
var self = this;
|
|
1664
|
+
var results = [];
|
|
1665
|
+
var rotated = 0;
|
|
1666
|
+
var skipped = 0;
|
|
1667
|
+
var failed = 0;
|
|
1668
|
+
var pending = list.slice();
|
|
1669
|
+
var inflight = [];
|
|
1670
|
+
var aborted = false;
|
|
1671
|
+
function _spawn() {
|
|
1672
|
+
// Codex P1 on v0.12.22 PR #173 — synchronously drain
|
|
1673
|
+
// non-wrappable entries inside _spawn until we hit one
|
|
1674
|
+
// that actually needs an async rewrap (or the pending
|
|
1675
|
+
// queue empties). The prior implementation returned
|
|
1676
|
+
// Promise.resolve() for skipped entries without adding
|
|
1677
|
+
// to inflight; if the first `concurrency` items were
|
|
1678
|
+
// all directory bundles, the warm-up drained pending
|
|
1679
|
+
// into the skipped bucket without spawning any inflight
|
|
1680
|
+
// workers + the drain loop exited immediately, leaving
|
|
1681
|
+
// the rest of the queue unprocessed.
|
|
1682
|
+
while (!aborted && pending.length > 0) {
|
|
1683
|
+
var entry = pending.shift();
|
|
1684
|
+
if (entry.format !== "tar" && entry.format !== "tar.gz") {
|
|
1685
|
+
results.push({
|
|
1686
|
+
bundleId: entry.bundleId,
|
|
1687
|
+
status: "skipped",
|
|
1688
|
+
reason: "format-not-wrappable",
|
|
1689
|
+
oldEnvelopeKind: null,
|
|
1690
|
+
newEnvelopeKind: null,
|
|
1691
|
+
});
|
|
1692
|
+
skipped += 1;
|
|
1693
|
+
continue; // try the next pending entry
|
|
1694
|
+
}
|
|
1695
|
+
return _spawnRewrap(entry);
|
|
1696
|
+
}
|
|
1697
|
+
return null;
|
|
1698
|
+
}
|
|
1699
|
+
function _spawnRewrap(entry) {
|
|
1700
|
+
var p = self.rewrapBundle(entry.bundleId, opts).then(function (r) {
|
|
1701
|
+
results.push(Object.assign({ status: "rotated" }, r));
|
|
1702
|
+
rotated += 1;
|
|
1703
|
+
}, function (err) {
|
|
1704
|
+
var code = (err && err.code) || (err && err.message) || String(err);
|
|
1705
|
+
if (/no-envelope-to-rewrap/.test(code)) {
|
|
1706
|
+
results.push({
|
|
1707
|
+
bundleId: entry.bundleId,
|
|
1708
|
+
status: "skipped",
|
|
1709
|
+
reason: "no-envelope",
|
|
1710
|
+
oldEnvelopeKind: null,
|
|
1711
|
+
newEnvelopeKind: null,
|
|
1712
|
+
});
|
|
1713
|
+
skipped += 1;
|
|
1714
|
+
} else {
|
|
1715
|
+
results.push({
|
|
1716
|
+
bundleId: entry.bundleId,
|
|
1717
|
+
status: "failed",
|
|
1718
|
+
reason: code,
|
|
1719
|
+
oldEnvelopeKind: null,
|
|
1720
|
+
newEnvelopeKind: null,
|
|
1721
|
+
});
|
|
1722
|
+
failed += 1;
|
|
1723
|
+
if (stopOnFirst) aborted = true;
|
|
1724
|
+
}
|
|
1725
|
+
});
|
|
1726
|
+
inflight.push(p);
|
|
1727
|
+
p.finally(function () {
|
|
1728
|
+
var idx = inflight.indexOf(p);
|
|
1729
|
+
if (idx !== -1) inflight.splice(idx, 1);
|
|
1730
|
+
});
|
|
1731
|
+
return p;
|
|
1732
|
+
}
|
|
1733
|
+
var ri;
|
|
1734
|
+
for (ri = 0; ri < concurrency; ri += 1) _spawn();
|
|
1735
|
+
while (inflight.length > 0) {
|
|
1736
|
+
await Promise.race(inflight.slice());
|
|
1737
|
+
if (!aborted && pending.length > 0 && inflight.length < concurrency) {
|
|
1738
|
+
while (inflight.length < concurrency && pending.length > 0) _spawn();
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
results.sort(function (a, b) { return a.bundleId < b.bundleId ? 1 : -1; });
|
|
1742
|
+
return {
|
|
1743
|
+
total: list.length,
|
|
1744
|
+
rotated: rotated,
|
|
1745
|
+
skipped: skipped,
|
|
1746
|
+
failed: failed,
|
|
1747
|
+
results: results,
|
|
1748
|
+
};
|
|
1749
|
+
},
|
|
1544
1750
|
async verifyAllBundles(vOpts) {
|
|
1545
1751
|
vOpts = vOpts || {};
|
|
1546
1752
|
// Codex P1 on v0.12.20 PR #171 — clamp fractional + zero
|
package/package.json
CHANGED
package/sbom.cdx.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
|
|
3
3
|
"bomFormat": "CycloneDX",
|
|
4
4
|
"specVersion": "1.5",
|
|
5
|
-
"serialNumber": "urn:uuid:
|
|
5
|
+
"serialNumber": "urn:uuid:aa0703c8-0954-482c-af7e-d813018096cf",
|
|
6
6
|
"version": 1,
|
|
7
7
|
"metadata": {
|
|
8
|
-
"timestamp": "2026-05-
|
|
8
|
+
"timestamp": "2026-05-24T08:01:37.093Z",
|
|
9
9
|
"lifecycles": [
|
|
10
10
|
{
|
|
11
11
|
"phase": "build"
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
}
|
|
20
20
|
],
|
|
21
21
|
"component": {
|
|
22
|
-
"bom-ref": "@blamejs/core@0.12.
|
|
22
|
+
"bom-ref": "@blamejs/core@0.12.22",
|
|
23
23
|
"type": "application",
|
|
24
24
|
"name": "blamejs",
|
|
25
|
-
"version": "0.12.
|
|
25
|
+
"version": "0.12.22",
|
|
26
26
|
"scope": "required",
|
|
27
27
|
"author": "blamejs contributors",
|
|
28
28
|
"description": "The Node framework that owns its stack.",
|
|
29
|
-
"purl": "pkg:npm/%40blamejs/core@0.12.
|
|
29
|
+
"purl": "pkg:npm/%40blamejs/core@0.12.22",
|
|
30
30
|
"properties": [],
|
|
31
31
|
"externalReferences": [
|
|
32
32
|
{
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"components": [],
|
|
55
55
|
"dependencies": [
|
|
56
56
|
{
|
|
57
|
-
"ref": "@blamejs/core@0.12.
|
|
57
|
+
"ref": "@blamejs/core@0.12.22",
|
|
58
58
|
"dependsOn": []
|
|
59
59
|
}
|
|
60
60
|
]
|