Skip to content

Commit

Permalink
chore: update runtime to alpha8
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Apr 26, 2024
1 parent 1964523 commit 31a2267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime
Submodule runtime updated 49 files
+2 −4 .github/workflows/build.ci.yml
+2 −2 .github/workflows/scheduled-checks.ci.yml
+1 −1 .github/workflows/scorecards.yml
+2 −2 WORKSPACE
+2 −5 elide/runtime/js/BUILD.bazel
+15 −0 elide/runtime/js/config.bzl
+81 −20 elide/runtime/js/entrypoint.js
+12 −0 elide/runtime/js/modules/BUILD.bazel
+15 −0 elide/runtime/js/modules/assert/BUILD.bazel
+179 −0 elide/runtime/js/modules/assert/assert.ts
+2 −0 elide/runtime/js/modules/assert/index.ts
+12 −0 elide/runtime/js/modules/assert/package.json
+2 −1 elide/runtime/js/modules/buffer/buffer.ts
+0 −2 elide/runtime/js/modules/buffer/index.ts
+8 −2 elide/runtime/js/modules/buffer/package.json
+16 −0 elide/runtime/js/modules/esbuild.config.js
+2 −2 elide/runtime/js/modules/express/index.ts
+8 −1 elide/runtime/js/modules/express/package.json
+3 −0 elide/runtime/js/modules/fs/BUILD.bazel
+86 −1 elide/runtime/js/modules/fs/fs.ts
+1 −3 elide/runtime/js/modules/fs/index.ts
+12 −2 elide/runtime/js/modules/fs/package.json
+8 −0 elide/runtime/js/modules/fs/promises.ts
+2 −0 elide/runtime/js/modules/fs/promises/fs-async.ts
+2 −0 elide/runtime/js/modules/fs/promises/index.ts
+15 −0 elide/runtime/js/modules/inspector/BUILD.bazel
+2 −0 elide/runtime/js/modules/inspector/index.ts
+2 −0 elide/runtime/js/modules/inspector/inspector.ts
+12 −0 elide/runtime/js/modules/inspector/package.json
+15 −0 elide/runtime/js/modules/os/BUILD.bazel
+2 −0 elide/runtime/js/modules/os/index.ts
+266 −0 elide/runtime/js/modules/os/os.ts
+12 −0 elide/runtime/js/modules/os/package.json
+15 −0 elide/runtime/js/modules/path/BUILD.bazel
+2 −0 elide/runtime/js/modules/path/index.ts
+12 −0 elide/runtime/js/modules/path/package.json
+287 −0 elide/runtime/js/modules/path/path.ts
+15 −0 elide/runtime/js/modules/process/BUILD.bazel
+2 −0 elide/runtime/js/modules/process/index.ts
+12 −0 elide/runtime/js/modules/process/package.json
+174 −0 elide/runtime/js/modules/process/process.ts
+15 −0 elide/runtime/js/modules/util/BUILD.bazel
+2 −0 elide/runtime/js/modules/util/index.ts
+12 −0 elide/runtime/js/modules/util/package.json
+14 −0 elide/runtime/js/modules/util/util.js
+2 −2 elide/runtime/js/tools/esbuild.config.js
+0 −1 tools/bazel/cache.bazelrc
+16 −3 tools/defs/elide.bzl
+19 −2 tools/defs/elide/bindist.bzl

0 comments on commit 31a2267

Please sign in to comment.