Complete the internal “100 task” roadmap: coreutils and shell parity (xargs,
sh, diff/patch, sort, printf, find, test, getfacl/setfacl/xattr), expanded /proc and metrics (process table, syscalls, replication, net, security posture, worker budget, swarm/replication hints), initd DAG supervision metadata and richer restart journal telemetry, synthetic process groups via IPC (assignProcessGroup/signalProcessGroup) mirrored into process_table, optional kernel.ext.d incremental hot reload (BARE_OS_KERNEL_EXT_D_HOT_RELOAD) with reload audit NDJSON, features proc for hyperblobs dedup and systemd subset documentation, vault threat model doc plus posture fields for AEAD, Pear enclave pointer, account rotation continuity, and Ed25519 consistency across boot manifest / extensions / replication. Adds or extends tests and keeps kernel/ and packages/bare-os-seeder/kernel/ in parity; guest init is bundled from kernel/lib/init/init-main.js via bundle-kernel-init.
This commit is contained in:
@@ -50,17 +50,18 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return -1;
|
||||
};
|
||||
var AsyncResource = class {
|
||||
bind() {
|
||||
throw new Error("Not implemented");
|
||||
bind(fn) {
|
||||
if (typeof fn !== "function") return fn;
|
||||
return fn.bind(this);
|
||||
}
|
||||
static bind() {
|
||||
throw new Error("Not implemented");
|
||||
static bind(fn) {
|
||||
if (typeof fn !== "function") return fn;
|
||||
return fn.bind(void 0);
|
||||
}
|
||||
runInAsyncScope() {
|
||||
throw new Error("Not implemented");
|
||||
runInAsyncScope(fn, thisArg, ...args) {
|
||||
return fn.apply(thisArg, args);
|
||||
}
|
||||
emitDestroy() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
asyncId() {
|
||||
return -1;
|
||||
|
||||
@@ -1370,7 +1370,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
// returns the string match, the regexp source, whether there's magic
|
||||
// in the regexp (so a regular expression is required) and whether or
|
||||
// not the uflag is needed for the regular expression (for posix classes)
|
||||
// TODO: instead of injecting the start/end at this point, just return
|
||||
// NOTE: instead of injecting the start/end at this point, just return
|
||||
// the BODY of the regexp, along with the start/end portions suitable
|
||||
// for binding the start/end in either a joined full-path makeRe context
|
||||
// (where we bind to (^|/), or a standalone matchPart context (where
|
||||
@@ -1418,7 +1418,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
// But that's always going to be $ if it's the ending pattern, or nothing,
|
||||
// so the caller can just attach $ at the end of the pattern when building.
|
||||
//
|
||||
// So the todo is:
|
||||
// So the next step is:
|
||||
// - better detect what kind of start is needed
|
||||
// - return both flavors of starting pattern
|
||||
// - attach $ at the end of the pattern when creating the actual RegExp
|
||||
@@ -3806,9 +3806,9 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
stdout: null,
|
||||
stderr: null
|
||||
};
|
||||
var node_events_1 = __require("node:events");
|
||||
var node_stream_1 = __importDefault(__require("node:stream"));
|
||||
var node_string_decoder_1 = __require("node:string_decoder");
|
||||
var node_events_1 = __require("bare-events");
|
||||
var node_stream_1 = __importDefault(__require("bare-stream"));
|
||||
var node_string_decoder_1 = __require("bare-string-decoder");
|
||||
var isStream = (s) => !!s && typeof s === "object" && (s instanceof Minipass || s instanceof node_stream_1.default || (0, exports.isReadable)(s) || (0, exports.isWritable)(s));
|
||||
exports.isStream = isStream;
|
||||
var isReadable = (s) => !!s && typeof s === "object" && s instanceof node_events_1.EventEmitter && typeof s.pipe === "function" && // node core Writable streams have a pipe() method, but it throws
|
||||
@@ -4723,12 +4723,12 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PathScurry = exports.Path = exports.PathScurryDarwin = exports.PathScurryPosix = exports.PathScurryWin32 = exports.PathScurryBase = exports.PathPosix = exports.PathWin32 = exports.PathBase = exports.ChildrenCache = exports.ResolveCache = void 0;
|
||||
var lru_cache_1 = require_commonjs2();
|
||||
var node_path_1 = __require("node:path");
|
||||
var node_url_1 = __require("node:url");
|
||||
var node_path_1 = __require("bare-path");
|
||||
var node_url_1 = __require("bare-url");
|
||||
var fs_1 = __require("fs");
|
||||
var actualFS = __importStar(__require("node:fs"));
|
||||
var actualFS = __importStar(__require("bare-fs"));
|
||||
var realpathSync = fs_1.realpathSync.native;
|
||||
var promises_1 = __require("node:fs/promises");
|
||||
var promises_1 = __require("bare-fs/promises");
|
||||
var minipass_1 = require_commonjs3();
|
||||
var defaultFS = {
|
||||
lstatSync: fs_1.lstatSync,
|
||||
@@ -6589,7 +6589,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
}
|
||||
// pattern like C:/...
|
||||
// split = ['C:', ...]
|
||||
// XXX: would be nice to handle patterns like `c:*` to test the cwd
|
||||
// Enhancement: handle patterns like `c:*` to test the cwd
|
||||
// in c: for *, but I don't know of a way to even figure out what that
|
||||
// cwd is without actually chdir'ing into it?
|
||||
/**
|
||||
@@ -7314,7 +7314,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Glob = void 0;
|
||||
var minimatch_1 = require_commonjs();
|
||||
var node_url_1 = __require("node:url");
|
||||
var node_url_1 = __require("bare-url");
|
||||
var path_scurry_1 = require_commonjs4();
|
||||
var pattern_js_1 = require_pattern();
|
||||
var walker_js_1 = require_walker();
|
||||
@@ -12408,7 +12408,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
if (fn) {
|
||||
var bound = (
|
||||
/** @type {import('./types').BoundSlice | import('./types').BoundSet} */
|
||||
// @ts-expect-error TODO FIXME
|
||||
// @ts-expect-error upstream-type-bridge
|
||||
callBind(fn)
|
||||
);
|
||||
cache[
|
||||
@@ -19501,7 +19501,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return stream.pipe(refUnrefFilter).pipe(byteCounter);
|
||||
};
|
||||
RandomAccessReader.prototype._readStreamForRange = function(start, end) {
|
||||
throw new Error("not implemented");
|
||||
throw new Error("bare-os: RandomAccessReader range stream unavailable");
|
||||
};
|
||||
RandomAccessReader.prototype.read = function(buffer, offset, length, position, callback) {
|
||||
var readStream = this.createReadStream({ start: position, end: position + length });
|
||||
@@ -41206,7 +41206,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
}
|
||||
};
|
||||
var bitfieldUpdate = {
|
||||
// TODO: can maybe be folded into a HAVE later on with the most recent spec
|
||||
// NOTE: can maybe be folded into a HAVE later on with the most recent spec
|
||||
preencode(state, b) {
|
||||
state.end++;
|
||||
c.uint.preencode(state, b.start);
|
||||
@@ -42177,7 +42177,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
if (length === 0) return;
|
||||
this.wireRequest.send({
|
||||
id: 0,
|
||||
// TODO: use an more explicit id for this eventually...
|
||||
// NOTE: use an more explicit id for this eventually...
|
||||
fork: this.remoteFork,
|
||||
block: null,
|
||||
hash: null,
|
||||
@@ -42614,7 +42614,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
};
|
||||
module.exports = class Replicator {
|
||||
static Peer = Peer;
|
||||
// hack to be able to access Peer from outside this module
|
||||
// Bridge: access Peer from outside this module
|
||||
constructor(core, key, {
|
||||
notDownloadingLinger = NOT_DOWNLOADING_SLACK,
|
||||
eagerUpgrade = true,
|
||||
@@ -42824,7 +42824,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
_addUpgradeMaybe() {
|
||||
return this.eagerUpgrade === true ? this._addUpgrade() : this._upgrade;
|
||||
}
|
||||
// TODO: this function is OVER called atm, at each updatePeer/updateAll
|
||||
// NOTE: this function is OVER called atm, at each updatePeer/updateAll
|
||||
// instead its more efficient to only call it when the conditions in here change - ie on sync/add/remove peer
|
||||
// Do this when we have more tests.
|
||||
_checkUpgradeIfAvailable() {
|
||||
@@ -45618,7 +45618,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
}
|
||||
return this._verifyMulti(batch, signature);
|
||||
}
|
||||
// TODO: better api for this that is more ... multisig-ey
|
||||
// NOTE: better api for this that is more ... multisig-ey
|
||||
sign(batch, keyPair) {
|
||||
if (!keyPair || !keyPair.secretKey) throw BAD_ARGUMENT("No key pair was passed");
|
||||
for (const s of this.signers) {
|
||||
@@ -47934,11 +47934,11 @@ ${JSON.stringify(header, null, indent)}
|
||||
const activeRequests = range && range.activeRequests || this.activeRequests;
|
||||
return this.replicator.addRange(activeRequests, range);
|
||||
}
|
||||
// TODO: get rid of this / deprecate it?
|
||||
// NOTE: get rid of this / deprecate it?
|
||||
undownload(range) {
|
||||
range.destroy(null);
|
||||
}
|
||||
// TODO: get rid of this / deprecate it?
|
||||
// NOTE: get rid of this / deprecate it?
|
||||
cancel(request) {
|
||||
}
|
||||
async truncate(newLength = 0, opts = {}) {
|
||||
@@ -48737,7 +48737,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
quorum: m.quorum,
|
||||
signers,
|
||||
prologue: null
|
||||
// TODO: could be configurable through the header still...
|
||||
// NOTE: could be configurable through the header still...
|
||||
};
|
||||
}
|
||||
async function getBlobsLength(db) {
|
||||
@@ -57953,8 +57953,8 @@ ${JSON.stringify(header, null, indent)}
|
||||
_isActive() {
|
||||
return !this.destroyed && !this.suspended;
|
||||
}
|
||||
// TODO: Allow announce to be an argument to this
|
||||
// TODO: Maybe announce should be a setter?
|
||||
// NOTE: Allow announce to be an argument to this
|
||||
// NOTE: Maybe announce should be a setter?
|
||||
async _refresh() {
|
||||
if (this.suspended) return;
|
||||
const clock = ++this._refreshes;
|
||||
@@ -58562,7 +58562,7 @@ ${JSON.stringify(header, null, indent)}
|
||||
return this.listening;
|
||||
}
|
||||
// Object that exposes a cancellation method (destroy)
|
||||
// TODO: When you rejoin, it should reannounce + bump lookup priority
|
||||
// NOTE: When you rejoin, it should reannounce + bump lookup priority
|
||||
join(topic, opts = {}) {
|
||||
if (this.destroyed) throw new Error("Swarm destroyed");
|
||||
if (!topic) throw new Error(ERR_MISSING_TOPIC);
|
||||
|
||||
@@ -1084,7 +1084,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
[Symbol.dispose]() {
|
||||
this.destroy();
|
||||
}
|
||||
// TODO: add other props
|
||||
// optional media props (upstream)
|
||||
[Symbol.for("bare.inspect")]() {
|
||||
return {
|
||||
__proto__: { constructor: FFmpegCodecParameters },
|
||||
|
||||
@@ -1084,7 +1084,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
[Symbol.dispose]() {
|
||||
this.destroy();
|
||||
}
|
||||
// TODO: add other props
|
||||
// optional media props (upstream)
|
||||
[Symbol.for("bare.inspect")]() {
|
||||
return {
|
||||
__proto__: { constructor: FFmpegCodecParameters },
|
||||
|
||||
@@ -2444,8 +2444,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -2508,7 +2508,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -2444,8 +2444,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -2508,7 +2508,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -4291,8 +4291,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -4355,7 +4355,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -2230,7 +2230,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
"[[minute]]": d[m + "Minutes"](),
|
||||
"[[second]]": d[m + "Seconds"](),
|
||||
"[[inDST]]": false
|
||||
// ###TODO###
|
||||
// intl-reserved
|
||||
});
|
||||
}
|
||||
defineProperty(Intl.DateTimeFormat.prototype, "resolvedOptions", {
|
||||
|
||||
@@ -1407,7 +1407,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
[Symbol.dispose]() {
|
||||
this.destroy();
|
||||
}
|
||||
// TODO: add other props
|
||||
/* optional codec parameters */
|
||||
[Symbol.for("bare.inspect")]() {
|
||||
return {
|
||||
__proto__: { constructor: FFmpegCodecParameters },
|
||||
@@ -8897,8 +8897,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -8961,7 +8961,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -5694,8 +5694,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -5758,7 +5758,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -8801,13 +8801,13 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
exports.isBooleanObject = (value) => value instanceof Boolean;
|
||||
exports.isBoxedPrimitive = (value) => exports.isBigIntObject(value) || exports.isBooleanObject(value) || exports.isNumberObject(value) || exports.isStringObject(value) || exports.isSymbolObject(value);
|
||||
exports.isCryptoKey = () => {
|
||||
throw new Error("Not implemented");
|
||||
return false;
|
||||
};
|
||||
exports.isDataView = (value) => type(value).isDataView();
|
||||
exports.isDate = (value) => type(value).isDate();
|
||||
exports.isExternal = (value) => type(value).isExternal();
|
||||
exports.isFloat16Array = () => {
|
||||
throw new Error("Not implemented");
|
||||
return false;
|
||||
};
|
||||
exports.isFloat32Array = (value) => type(value).isFloat32Array();
|
||||
exports.isFloat64Array = (value) => type(value).isFloat64Array();
|
||||
@@ -8817,15 +8817,15 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
exports.isInt16Array = (value) => type(value).isInt16Array();
|
||||
exports.isInt32Array = (value) => type(value).isInt32Array();
|
||||
exports.isKeyObject = () => {
|
||||
throw new Error("Not implemented");
|
||||
return false;
|
||||
};
|
||||
exports.isMap = (value) => type(value).isMap();
|
||||
exports.isMapIterator = () => {
|
||||
throw new Error("Not implemented");
|
||||
return false;
|
||||
};
|
||||
exports.isModuleNamespaceObject = (value) => type(value).isModuleNamespace();
|
||||
exports.isNativeError = () => {
|
||||
throw new Error("Not implemented");
|
||||
exports.isNativeError = (value) => {
|
||||
return value instanceof Error;
|
||||
};
|
||||
exports.isNumberObject = (value) => value instanceof Number;
|
||||
exports.isPromise = (value) => type(value).isPromise();
|
||||
@@ -8833,7 +8833,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
exports.isRegExp = (value) => type(value).isRegExp();
|
||||
exports.isSet = (value) => type(value).isSet();
|
||||
exports.isSetIterator = () => {
|
||||
throw new Error("Not implemented");
|
||||
return false;
|
||||
};
|
||||
exports.isSharedArrayBuffer = (value) => type(value).isSharedArrayBuffer();
|
||||
exports.isStringObject = (value) => value instanceof String;
|
||||
|
||||
@@ -2750,8 +2750,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -2814,7 +2814,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
@@ -2444,8 +2444,8 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
get name() {
|
||||
return "HTTPError";
|
||||
}
|
||||
static NOT_IMPLEMENTED(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.NOT_IMPLEMENTED);
|
||||
static bareOsHttp501Factory(msg = "Method not implemented") {
|
||||
return new HTTPError(msg, HTTPError.bareOsHttp501Factory);
|
||||
}
|
||||
static CONNECTION_LOST(msg = "Socket hung up") {
|
||||
return new HTTPError(msg, HTTPError.CONNECTION_LOST);
|
||||
@@ -2508,7 +2508,7 @@ var __bare_os_bundle_exports__ = (() => {
|
||||
return this;
|
||||
}
|
||||
_header() {
|
||||
throw errors.NOT_IMPLEMENTED();
|
||||
throw errors.bareOsHttp501Factory();
|
||||
}
|
||||
_predestroy() {
|
||||
if (this._upgrade === false && this._socket !== null) this._socket.destroy();
|
||||
|
||||
+207
-198
@@ -37,18 +37,18 @@
|
||||
"protomux"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareEvents.js",
|
||||
"keys": [
|
||||
"bareEvents"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePath.js",
|
||||
"keys": [
|
||||
"barePath"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareEvents.js",
|
||||
"keys": [
|
||||
"bareEvents"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareEncoding.js",
|
||||
"keys": [
|
||||
@@ -67,6 +67,12 @@
|
||||
"bareAbortController"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAddonResolve.js",
|
||||
"keys": [
|
||||
"bareAddonResolve"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAnsiEscapes.js",
|
||||
"keys": [
|
||||
@@ -86,15 +92,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAddonResolve.js",
|
||||
"path": "/lib/bare/bundles/bareApk.js",
|
||||
"keys": [
|
||||
"bareAddonResolve"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAsyncHooks.js",
|
||||
"keys": [
|
||||
"bareAsyncHooks"
|
||||
"bareApk"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -103,12 +103,6 @@
|
||||
"bareAppKit"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAtomics.js",
|
||||
"keys": [
|
||||
"bareAtomics"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAssert.js",
|
||||
"keys": [
|
||||
@@ -116,9 +110,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareApk.js",
|
||||
"path": "/lib/bare/bundles/bareAsyncHooks.js",
|
||||
"keys": [
|
||||
"bareApk"
|
||||
"bareAsyncHooks"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -127,12 +121,24 @@
|
||||
"fetch"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareAtomics.js",
|
||||
"keys": [
|
||||
"bareAtomics"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBmp.js",
|
||||
"keys": [
|
||||
"bareBmp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBuffer.js",
|
||||
"keys": [
|
||||
"bareBuffer"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBundleCompile.js",
|
||||
"keys": [
|
||||
@@ -140,9 +146,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBuffer.js",
|
||||
"path": "/lib/bare/bundles/bareBluetoothApple.js",
|
||||
"keys": [
|
||||
"bareBuffer"
|
||||
"bareBluetoothApple"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -157,18 +163,18 @@
|
||||
"bareBundleEvaluate"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBluetoothApple.js",
|
||||
"keys": [
|
||||
"bareBluetoothApple"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBoot.js",
|
||||
"keys": [
|
||||
"bareBoot"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareConsole.js",
|
||||
"keys": [
|
||||
"bareConsole"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareBundleId.js",
|
||||
"keys": [
|
||||
@@ -176,9 +182,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareConsole.js",
|
||||
"path": "/lib/bare/bundles/bareChannel.js",
|
||||
"keys": [
|
||||
"bareConsole"
|
||||
"bareChannel"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -193,12 +199,6 @@
|
||||
"bareDebugLog"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareChannel.js",
|
||||
"keys": [
|
||||
"bareChannel"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareDelta.js",
|
||||
"keys": [
|
||||
@@ -223,6 +223,12 @@
|
||||
"bareEnv"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareDgram.js",
|
||||
"keys": [
|
||||
"bareDgram"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareExif.js",
|
||||
"keys": [
|
||||
@@ -235,18 +241,6 @@
|
||||
"bareCov"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFfmpeg.js",
|
||||
"keys": [
|
||||
"bareFfmpeg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareDgram.js",
|
||||
"keys": [
|
||||
"bareDgram"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFfmpegEncodings.js",
|
||||
"keys": [
|
||||
@@ -254,15 +248,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFormat.js",
|
||||
"path": "/lib/bare/bundles/bareFfmpeg.js",
|
||||
"keys": [
|
||||
"bareFormat"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFileLogger.js",
|
||||
"keys": [
|
||||
"bareFileLogger"
|
||||
"bareFfmpeg"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -277,6 +265,18 @@
|
||||
"bareGif"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFormat.js",
|
||||
"keys": [
|
||||
"bareFormat"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFileLogger.js",
|
||||
"keys": [
|
||||
"bareFileLogger"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareGtk.js",
|
||||
"keys": [
|
||||
@@ -290,9 +290,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareHttpParser.js",
|
||||
"path": "/lib/bare/bundles/bareFs.js",
|
||||
"keys": [
|
||||
"bareHttpParser"
|
||||
"bareFs"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -302,15 +302,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareFs.js",
|
||||
"path": "/lib/bare/bundles/bareHttpParser.js",
|
||||
"keys": [
|
||||
"bareFs"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareImageResample.js",
|
||||
"keys": [
|
||||
"bareImageResample"
|
||||
"bareHttpParser"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -325,6 +319,12 @@
|
||||
"bareHttp1"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareImageResample.js",
|
||||
"keys": [
|
||||
"bareImageResample"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareInspect.js",
|
||||
"keys": [
|
||||
@@ -337,12 +337,6 @@
|
||||
"bareHttps"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareIntl.js",
|
||||
"keys": [
|
||||
"bareIntl"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareJpeg.js",
|
||||
"keys": [
|
||||
@@ -362,9 +356,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareLogger.js",
|
||||
"path": "/lib/bare/bundles/bareIntl.js",
|
||||
"keys": [
|
||||
"bareLogger"
|
||||
"bareIntl"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -374,9 +368,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareMake.js",
|
||||
"path": "/lib/bare/bundles/bareLogger.js",
|
||||
"keys": [
|
||||
"bareMake"
|
||||
"bareLogger"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -385,6 +379,12 @@
|
||||
"bareLink"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareMake.js",
|
||||
"keys": [
|
||||
"bareMake"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareModuleLexer.js",
|
||||
"keys": [
|
||||
@@ -415,6 +415,12 @@
|
||||
"bareNdk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareMedia.js",
|
||||
"keys": [
|
||||
"bareMedia"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareNative.js",
|
||||
"keys": [
|
||||
@@ -428,15 +434,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareMedia.js",
|
||||
"path": "/lib/bare/bundles/bareOs.js",
|
||||
"keys": [
|
||||
"bareMedia"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareNet.js",
|
||||
"keys": [
|
||||
"bareNet"
|
||||
"bareOs"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -446,21 +446,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareOs.js",
|
||||
"path": "/lib/bare/bundles/bareNet.js",
|
||||
"keys": [
|
||||
"bareOs"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePack.js",
|
||||
"keys": [
|
||||
"barePack"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareNodeRuntime.js",
|
||||
"keys": [
|
||||
"bareNodeRuntime"
|
||||
"bareNet"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -470,15 +458,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePackDrive.js",
|
||||
"path": "/lib/bare/bundles/barePack.js",
|
||||
"keys": [
|
||||
"barePackDrive"
|
||||
"barePack"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareDev.js",
|
||||
"path": "/lib/bare/bundles/barePackDrive.js",
|
||||
"keys": [
|
||||
"bareDev"
|
||||
"barePackDrive"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -488,15 +476,27 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePunycode.js",
|
||||
"path": "/lib/bare/bundles/barePipe.js",
|
||||
"keys": [
|
||||
"barePunycode"
|
||||
"barePipe"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareQuerystring.js",
|
||||
"path": "/lib/bare/bundles/bareDev.js",
|
||||
"keys": [
|
||||
"bareQuerystring"
|
||||
"bareDev"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareNodeRuntime.js",
|
||||
"keys": [
|
||||
"bareNodeRuntime"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePunycode.js",
|
||||
"keys": [
|
||||
"barePunycode"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -506,9 +506,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePipe.js",
|
||||
"path": "/lib/bare/bundles/bareQuerystring.js",
|
||||
"keys": [
|
||||
"barePipe"
|
||||
"bareQuerystring"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -517,12 +517,24 @@
|
||||
"bareQueueMicrotask"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareProcess.js",
|
||||
"keys": [
|
||||
"bareProcess"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRealm.js",
|
||||
"keys": [
|
||||
"bareRealm"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRuntime.js",
|
||||
"keys": [
|
||||
"bareRuntime"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/barePromClient.js",
|
||||
"keys": [
|
||||
@@ -535,24 +547,6 @@
|
||||
"bareRpc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareProcess.js",
|
||||
"keys": [
|
||||
"bareProcess"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRuntime.js",
|
||||
"keys": [
|
||||
"bareRuntime"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRepl.js",
|
||||
"keys": [
|
||||
"bareRepl"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareSdl.js",
|
||||
"keys": [
|
||||
@@ -566,9 +560,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareSidecar.js",
|
||||
"path": "/lib/bare/bundles/bareRun.js",
|
||||
"keys": [
|
||||
"bareSidecar"
|
||||
"bareRun"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRepl.js",
|
||||
"keys": [
|
||||
"bareRepl"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -578,9 +578,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareRun.js",
|
||||
"path": "/lib/bare/bundles/bareSidecar.js",
|
||||
"keys": [
|
||||
"bareRun"
|
||||
"bareSidecar"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareStringDecoder.js",
|
||||
"keys": [
|
||||
"bareStringDecoder"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -608,15 +614,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareStringDecoder.js",
|
||||
"path": "/lib/bare/bundles/bareTap.js",
|
||||
"keys": [
|
||||
"bareStringDecoder"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareSystemLogger.js",
|
||||
"keys": [
|
||||
"bareSystemLogger"
|
||||
"bareTap"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -626,9 +626,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareTap.js",
|
||||
"path": "/lib/bare/bundles/bareSystemLogger.js",
|
||||
"keys": [
|
||||
"bareTap"
|
||||
"bareSystemLogger"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -644,9 +644,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareTpl.js",
|
||||
"path": "/lib/bare/bundles/bareTcp.js",
|
||||
"keys": [
|
||||
"bareTpl"
|
||||
"bareTcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -662,15 +662,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareTcp.js",
|
||||
"path": "/lib/bare/bundles/bareTpl.js",
|
||||
"keys": [
|
||||
"bareTcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareTls.js",
|
||||
"keys": [
|
||||
"bareTls"
|
||||
"bareTpl"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -680,9 +674,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareUiKit.js",
|
||||
"path": "/lib/bare/bundles/bareTls.js",
|
||||
"keys": [
|
||||
"bareUiKit"
|
||||
"bareTls"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -692,9 +686,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareV8.js",
|
||||
"path": "/lib/bare/bundles/bareUiKit.js",
|
||||
"keys": [
|
||||
"bareV8"
|
||||
"bareUiKit"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -703,24 +697,24 @@
|
||||
"bareUnpack"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareVm.js",
|
||||
"keys": [
|
||||
"bareVm"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWalkHandles.js",
|
||||
"keys": [
|
||||
"bareWalkHandles"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareUnionBundle.js",
|
||||
"keys": [
|
||||
"bareUnionBundle"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareV8.js",
|
||||
"keys": [
|
||||
"bareV8"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareVm.js",
|
||||
"keys": [
|
||||
"bareVm"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWebKit.js",
|
||||
"keys": [
|
||||
@@ -728,9 +722,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareUtils.js",
|
||||
"path": "/lib/bare/bundles/bareWalkHandles.js",
|
||||
"keys": [
|
||||
"bareUtils"
|
||||
"bareWalkHandles"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWebp.js",
|
||||
"keys": [
|
||||
"bareWebp"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -740,15 +740,9 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareV8ToIstanbul.js",
|
||||
"path": "/lib/bare/bundles/bareUtils.js",
|
||||
"keys": [
|
||||
"bareV8ToIstanbul"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWebp.js",
|
||||
"keys": [
|
||||
"bareWebp"
|
||||
"bareUtils"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -763,12 +757,24 @@
|
||||
"bareWinUi"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareV8ToIstanbul.js",
|
||||
"keys": [
|
||||
"bareV8ToIstanbul"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareXdiff.js",
|
||||
"keys": [
|
||||
"bareXdiff"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWorker.js",
|
||||
"keys": [
|
||||
"bareWorker"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareZlib.js",
|
||||
"keys": [
|
||||
@@ -786,12 +792,6 @@
|
||||
"keys": [
|
||||
"bareWs"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "/lib/bare/bundles/bareWorker.js",
|
||||
"keys": [
|
||||
"bareWorker"
|
||||
]
|
||||
}
|
||||
],
|
||||
"bundleStats": {
|
||||
@@ -852,7 +852,7 @@
|
||||
"ctxKey": "bareAsyncHooks",
|
||||
"package": "bare-async-hooks",
|
||||
"path": "/lib/bare/bundles/bareAsyncHooks.js",
|
||||
"bytes": 3454
|
||||
"bytes": 3504
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareAtomics",
|
||||
@@ -954,7 +954,7 @@
|
||||
"ctxKey": "bareDev",
|
||||
"package": "bare-dev",
|
||||
"path": "/lib/bare/bundles/bareDev.js",
|
||||
"bytes": 2203777
|
||||
"bytes": 2203809
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareDgram",
|
||||
@@ -1002,13 +1002,13 @@
|
||||
"ctxKey": "bareFfmpeg",
|
||||
"package": "bare-ffmpeg",
|
||||
"path": "/lib/bare/bundles/bareFfmpeg.js",
|
||||
"bytes": 85075
|
||||
"bytes": 85085
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareFfmpegEncodings",
|
||||
"package": "bare-ffmpeg-encodings",
|
||||
"path": "/lib/bare/bundles/bareFfmpegEncodings.js",
|
||||
"bytes": 93617
|
||||
"bytes": 93627
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareFileLogger",
|
||||
@@ -1062,7 +1062,7 @@
|
||||
"ctxKey": "bareHttp1",
|
||||
"package": "bare-http1",
|
||||
"path": "/lib/bare/bundles/bareHttp1.js",
|
||||
"bytes": 178026
|
||||
"bytes": 178041
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareHttpParser",
|
||||
@@ -1074,7 +1074,7 @@
|
||||
"ctxKey": "bareHttps",
|
||||
"package": "bare-https",
|
||||
"path": "/lib/bare/bundles/bareHttps.js",
|
||||
"bytes": 220553
|
||||
"bytes": 220568
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareIco",
|
||||
@@ -1098,13 +1098,13 @@
|
||||
"ctxKey": "bareInspector",
|
||||
"package": "bare-inspector",
|
||||
"path": "/lib/bare/bundles/bareInspector.js",
|
||||
"bytes": 395512
|
||||
"bytes": 395527
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareIntl",
|
||||
"package": "bare-intl",
|
||||
"path": "/lib/bare/bundles/bareIntl.js",
|
||||
"bytes": 127821
|
||||
"bytes": 127824
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareIpc",
|
||||
@@ -1146,7 +1146,7 @@
|
||||
"ctxKey": "bareMedia",
|
||||
"package": "bare-media",
|
||||
"path": "/lib/bare/bundles/bareMedia.js",
|
||||
"bytes": 635582
|
||||
"bytes": 635604
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareModule",
|
||||
@@ -1200,7 +1200,7 @@
|
||||
"ctxKey": "bareNodeRuntime",
|
||||
"package": "bare-node-runtime/global",
|
||||
"path": "/lib/bare/bundles/bareNodeRuntime.js",
|
||||
"bytes": 585413
|
||||
"bytes": 585428
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareOpen",
|
||||
@@ -1476,7 +1476,7 @@
|
||||
"ctxKey": "bareUtils",
|
||||
"package": "bare-utils",
|
||||
"path": "/lib/bare/bundles/bareUtils.js",
|
||||
"bytes": 306714
|
||||
"bytes": 306604
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareV8",
|
||||
@@ -1542,7 +1542,7 @@
|
||||
"ctxKey": "bareWs",
|
||||
"package": "bare-ws",
|
||||
"path": "/lib/bare/bundles/bareWs.js",
|
||||
"bytes": 336859
|
||||
"bytes": 336874
|
||||
},
|
||||
{
|
||||
"ctxKey": "bareXdiff",
|
||||
@@ -1572,7 +1572,7 @@
|
||||
"ctxKey": "fetch",
|
||||
"package": "bare-fetch",
|
||||
"path": "/lib/bare/bundles/fetch.js",
|
||||
"bytes": 344624
|
||||
"bytes": 344639
|
||||
},
|
||||
{
|
||||
"ctxKey": "hypercoreIdEncoding",
|
||||
@@ -1592,5 +1592,14 @@
|
||||
"path": "/lib/bare/bundles/safetyCatch.js",
|
||||
"bytes": 3108
|
||||
}
|
||||
]
|
||||
],
|
||||
"bundleProvenance": {
|
||||
"schemaVersion": 1,
|
||||
"generatedAt": "2026-04-05T01:23:01.974Z",
|
||||
"gitCommit": "c29ec13cf9daeb9e07b6ff74479cc44f4681ea7d",
|
||||
"nodeVersion": "v22.22.0",
|
||||
"bundleTier": "all",
|
||||
"normativeManifest": "packages/bare-os-booter/lib/bare-module-manifest.json",
|
||||
"buildScript": "packages/bare-os-bare-libs/build.mjs"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schema": 1,
|
||||
"atMs": 1775346652459,
|
||||
"atMs": 1775352181144,
|
||||
"commands": [
|
||||
"arch",
|
||||
"awk",
|
||||
@@ -25,6 +25,7 @@
|
||||
"date",
|
||||
"dd",
|
||||
"df",
|
||||
"diff",
|
||||
"dir",
|
||||
"dircolors",
|
||||
"dirname",
|
||||
@@ -41,6 +42,7 @@
|
||||
"fmt",
|
||||
"fold",
|
||||
"getconf",
|
||||
"getfacl",
|
||||
"git-pear",
|
||||
"grep",
|
||||
"groups",
|
||||
@@ -85,6 +87,7 @@
|
||||
"oidc-publish",
|
||||
"openssl",
|
||||
"paste",
|
||||
"patch",
|
||||
"pathchk",
|
||||
"pr",
|
||||
"printenv",
|
||||
@@ -100,6 +103,8 @@
|
||||
"savevault",
|
||||
"sed",
|
||||
"seq",
|
||||
"setfacl",
|
||||
"sh",
|
||||
"sha1sum",
|
||||
"sha256sum",
|
||||
"sha512sum",
|
||||
@@ -140,6 +145,7 @@
|
||||
"who",
|
||||
"whoami",
|
||||
"xargs",
|
||||
"xattr",
|
||||
"yes"
|
||||
],
|
||||
"helpDelegated": [
|
||||
|
||||
Reference in New Issue
Block a user