Extract _hyperswarmOpts/_newHyperswarm and _startupStepTimeout to platform-hyperswarm-runtime-mixin and platform-session-startup-mixin (62 manifest rows). Add platform-class-imports and platform-index-export-manifest; registries derive counts from manifest. No behavior change. Co-authored-by: Cursor <[email protected]>
16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
'use strict'
|
|
|
|
const fs = require('bare-fs')
|
|
const path = require('bare-path')
|
|
const b4a = require('b4a')
|
|
const EventEmitter = require('bare-events')
|
|
const bindings = require('./platform-index-bindings')
|
|
|
|
module.exports = {
|
|
fs,
|
|
path,
|
|
b4a,
|
|
EventEmitter,
|
|
...bindings
|
|
}
|