agent-web-os 0.1.5 → 0.1.6

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/dist/index.cjs CHANGED
@@ -60631,6 +60631,26 @@ var AlmostNodeSession = class {
60631
60631
  "constants.UV_FS_COPYFILE_FICLONE_FORCE = 4;",
60632
60632
  "module.exports = constants;"
60633
60633
  ].join("\n"));
60634
+ this._vfs.mkdirSync("/node_modules/stream", { recursive: true });
60635
+ this._vfs.writeFileSync("/node_modules/stream/package.json", JSON.stringify({
60636
+ name: "stream",
60637
+ version: "0.0.1",
60638
+ main: "index.js"
60639
+ }));
60640
+ this._vfs.writeFileSync(
60641
+ "/node_modules/stream/index.js",
60642
+ "module.exports = require('stream');"
60643
+ );
60644
+ this._vfs.mkdirSync("/node_modules/stream/promises", { recursive: true });
60645
+ this._vfs.writeFileSync("/node_modules/stream/promises/package.json", JSON.stringify({
60646
+ name: "stream-promises",
60647
+ version: "0.0.1",
60648
+ main: "index.js"
60649
+ }));
60650
+ this._vfs.writeFileSync(
60651
+ "/node_modules/stream/promises/index.js",
60652
+ "var stream = require('stream');\nmodule.exports = stream.promises || {};"
60653
+ );
60634
60654
  this.disposeObservableSubscription = this.fs.subscribe((event) => {
60635
60655
  void this.trackOperation((async () => {
60636
60656
  if (!this.initialized || this.suppressObservableMirrorCount > 0) {