Skip to content

Commit 457c06e

Browse files
committed
chore: rename to deepbash
1 parent b3421b8 commit 457c06e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+175
-4559
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ sandbox-workspace/
6262
coverage
6363

6464
# Deepwasm build artifacts
65-
libs/deepwasm/rust/runtime/Cargo.lock
65+
libs/deepbash/rust/runtime/Cargo.lock
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import net from "node:net";
1111
import fs from "node:fs";
12-
import { DeepwasmBackend } from "../src/backend.js";
12+
import { DeepbashBackend } from "../src/backend.js";
1313

1414
const SOCKET_PATH = `/tmp/wasix-${process.pid}.sock`;
1515
const WELL_KNOWN_SOCKET = `/tmp/wasix-session.sock`;
@@ -105,7 +105,7 @@ function cleanupFiles(): void {
105105
async function main(): Promise<void> {
106106
log("Booting WASIX sandbox...");
107107

108-
const backend = await DeepwasmBackend.create();
108+
const backend = await DeepbashBackend.create();
109109
const session = await backend.shell();
110110

111111
log(`WASIX sandbox ready. Socket: ${SOCKET_PATH}`);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DeepwasmBackend } from "../src/backend.js";
1+
import { DeepbashBackend } from "../src/backend.js";
22
import { BaseDemoBackend } from "./demo-backend";
33

44
class FooBackend extends BaseDemoBackend {
@@ -24,7 +24,7 @@ class BarBackend extends BaseDemoBackend {
2424
}
2525

2626
async function main() {
27-
const backend = await DeepwasmBackend.create({
27+
const backend = await DeepbashBackend.create({
2828
mounts: {
2929
"/foo": new FooBackend(),
3030
"/bar": new BarBackend(),
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "deepwasm",
2+
"name": "deepbash",
33
"version": "0.10.0",
44
"type": "module",
55
"main": "dist/index.mjs",
@@ -11,7 +11,7 @@
1111
"wasi",
1212
"wasix"
1313
],
14-
"description": "Deepwasm — WASIX execution runtime for deepagents",
14+
"description": "Deepbash — WASIX execution runtime for deepagents",
1515
"author": "Deepagents",
1616
"license": "MIT",
1717
"repository": {
@@ -31,15 +31,15 @@
3131
"default": "./dist/node.mjs"
3232
},
3333
"./wasm": {
34-
"unwasm": "./dist/deepwasm_bg.wasm",
34+
"unwasm": "./dist/deepbash_bg.wasm",
3535
"types": "./dist/wasm.d.ts",
36-
"default": "./dist/deepwasm_bg.wasm"
36+
"default": "./dist/deepbash_bg.wasm"
3737
},
3838
"./package.json": "./package.json",
3939
"./*": "./dist/*"
4040
},
4141
"scripts": {
42-
"build": "wasm-pack build rust/runtime --release --target=web --weak-refs --no-pack && wasm-opt rust/runtime/pkg/deepwasm_bg.wasm -O2 -o rust/runtime/pkg/deepwasm_bg.wasm && npm run build:rollup",
42+
"build": "wasm-pack build rust/runtime --release --target=web --weak-refs --no-pack && wasm-opt rust/runtime/pkg/deepbash_bg.wasm -O2 -o rust/runtime/pkg/deepbash_bg.wasm && npm run build:rollup",
4343
"build:rollup": "rollup -c --environment BUILD:production",
4444
"build:dev": "wasm-pack build rust/runtime --dev --target=web --weak-refs --no-pack && rollup -c --environment BUILD:development",
4545
"dev": "rollup -c -w",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ const makeConfig = (env = "development", plugins = []) => {
5353
copy({
5454
targets: [
5555
{
56-
src: ["rust/runtime/pkg/deepwasm_bg.wasm", "rust/runtime/pkg/deepwasm_bg.wasm.d.ts"],
56+
src: ["rust/runtime/pkg/deepbash_bg.wasm", "rust/runtime/pkg/deepbash_bg.wasm.d.ts"],
5757
dest: "dist",
5858
},
5959
],
6060
}),
6161
replace({
6262
values: {
63-
"globalThis.wasmUrl": `"https://unpkg.com/${pkg.name}@${pkg.version}/dist/deepwasm_bg.wasm"`,
63+
"globalThis.wasmUrl": `"https://unpkg.com/${pkg.name}@${pkg.version}/dist/deepbash_bg.wasm"`,
6464
"globalThis.workerUrl": `"https://unpkg.com/${pkg.name}@${pkg.version}/dist/index.mjs"`,
6565
},
6666
preventAssignment: true,

0 commit comments

Comments
 (0)