From b64e8f25baa3aa847950a0c646efad4c0aec8acb Mon Sep 17 00:00:00 2001 From: subshell Date: Sun, 29 Dec 2024 23:08:30 +0000 Subject: [PATCH] manual update: deno.land/x/subshell@0.2.45-2 --- .github/README.md | 2 +- Dockerfile | 2 +- README.md | 4 ++-- init.ts | 4 ++-- main.ts | 2 +- subsh-deno | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/README.md b/.github/README.md index afd3be8..c29193f 100644 --- a/.github/README.md +++ b/.github/README.md @@ -153,7 +153,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.45/init.ts +$ deno repl --unstable --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts ... Deno 1.23.2 exit using ctrl+d or close() diff --git a/Dockerfile b/Dockerfile index b70d4d1..e06979f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,6 @@ RUN chmod 644 /cache/deno_history.txt USER subshell -ENV SUBSHELL_VERSION 0.2.45 +ENV SUBSHELL_VERSION 0.2.45-2 CMD hub diff --git a/README.md b/README.md index 965c69b..e2935fb 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ 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.45/init.ts +$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts ``` Start in lite mode ``` -$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45/tini.ts +$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-2/tini.ts ``` diff --git a/init.ts b/init.ts index a0b7d98..d2af869 100644 --- a/init.ts +++ b/init.ts @@ -4,8 +4,8 @@ import { WsProvider, } from "https://deno.land/x/polkadot@0.2.45/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.45/client/mod.ts"; -// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.45/signer/mod.ts"; +import { Client } from "https://deno.land/x/subshell@0.2.45-2/client/mod.ts"; +// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.45-2/signer/mod.ts"; import { stringToU8a } from "https://deno.land/x/polkadot@0.2.45/util/mod.ts"; const GEAR = !!Deno.env.get("GEAR"); diff --git a/main.ts b/main.ts index 22d82b0..69b9449 100755 --- a/main.ts +++ b/main.ts @@ -8,6 +8,6 @@ const status = await Deno.run({ "--allow-env", "--no-prompt", "--unstable", - "--eval-file=https://deno.land/x/subshell@0.2.45/init.ts", + "--eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts", ], }).status(); diff --git a/subsh-deno b/subsh-deno index fa4d195..03a9113 100755 --- a/subsh-deno +++ b/subsh-deno @@ -16,7 +16,7 @@ if [[ "$1" == cache ]]; then done $DENO run --no-lock --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.45/init.ts + # $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts # $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --eval-file=./init.ts - $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --allow-import --eval-file=https://deno.land/x/subshell@0.2.45/init.ts + $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --allow-import --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts fi