Skip to content

Commit

Permalink
deno.land/x/subshell@0.2.43-1
Browse files Browse the repository at this point in the history
  • Loading branch information
subshell committed Oct 30, 2023
1 parent d252d95 commit 21e1948
Show file tree
Hide file tree
Showing 7 changed files with 164 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Here are Subshell's advantages over existing Node.js based shells.
In fact, you can load the Subshell init script in Deno.

```
$ deno repl --unstable --eval-file=https://deno.land/x/subshell@0.2.43/init.ts
$ deno repl --unstable --eval-file=https://deno.land/x/subshell@0.2.43-1/init.ts
...
Deno 1.23.2
exit using ctrl+d or close()
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ RUN chmod 644 /cache/deno_history.txt

USER subshell

ENV SUBSHELL_VERSION 0.2.43
ENV SUBSHELL_VERSION 0.2.43-1

CMD hub
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ in a Deno 🦕 repl, using polkadot-js extension as remote signer ✍️.
Start with browser extension integration

```
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.43/init.ts
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.43-1/init.ts
```

Start in lite mode

```
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.43/tini.ts
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.43-1/tini.ts
```
155 changes: 155 additions & 0 deletions deno.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import {
WsProvider,
} from "https://deno.land/x/polkadot@0.2.43/api/mod.ts";
import { GearApi } from "https://gear-js.deno.dev/api/src/index.ts";
import { Client } from "https://deno.land/x/subshell@0.2.43/client/mod.ts";
// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.43/signer/mod.ts";
import { Client } from "https://deno.land/x/subshell@0.2.43-1/client/mod.ts";
// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.43-1/signer/mod.ts";
import { fromPng } from "npm:@rgba-image/png";
import * as sixel from "npm:sixel";
import { stringToU8a } from "https://deno.land/x/polkadot@0.2.43/util/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ const status = await Deno.run({
"--allow-env",
"--no-prompt",
"--unstable",
"--eval-file=https://deno.land/x/subshell@0.2.43/init.ts",
"--eval-file=https://deno.land/x/subshell@0.2.43-1/init.ts",
],
}).status();
4 changes: 2 additions & 2 deletions subsh-deno
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ if [[ "$1" == cache ]]; then
done
$DENO run --unstable -A cache.ts
else
# $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.43/init.ts
$DENO repl --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --eval-file=https://deno.land/x/subshell@0.2.43/init.ts
# $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.43-1/init.ts
$DENO repl --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --eval-file=https://deno.land/x/subshell@0.2.43-1/init.ts
fi

0 comments on commit 21e1948

Please sign in to comment.