diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92b64a362..39850ab86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: npx lerna run test:ci npx lerna run test:ts-versions - name: Deno Test - run: deno test --allow-read --unstable deno + run: deno test --allow-read deno - name: Code Verification run: | npx lerna run code-verification diff --git a/deno/basic_test.ts b/deno/basic_test.ts index 5aa566ed1..80703ea27 100644 --- a/deno/basic_test.ts +++ b/deno/basic_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.128.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.140.0/testing/asserts.ts"; import { Project } from "./mod.ts"; // todo: Eventually all tests run for the node package should also be run for Deno diff --git a/deno/bootstrap/basic_test.ts b/deno/bootstrap/basic_test.ts index e40261b44..b29a4c4a9 100644 --- a/deno/bootstrap/basic_test.ts +++ b/deno/bootstrap/basic_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.128.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.140.0/testing/asserts.ts"; import { createProjectSync } from "./mod.ts"; // todo: Eventually all tests run for the node package should also be run for Deno diff --git a/deno/common/DenoRuntime.ts b/deno/common/DenoRuntime.ts index 17cbc7759..07255f45c 100644 --- a/deno/common/DenoRuntime.ts +++ b/deno/common/DenoRuntime.ts @@ -1,6 +1,6 @@ -import { ensureDir, ensureDirSync } from "https://deno.land/std@0.128.0/fs/ensure_dir.ts"; -import { expandGlob, expandGlobSync } from "https://deno.land/std@0.128.0/fs/expand_glob.ts"; -import * as stdPath from "https://deno.land/std@0.128.0/path/mod.ts"; +import { ensureDir, ensureDirSync } from "https://deno.land/std@0.140.0/fs/ensure_dir.ts"; +import { expandGlob, expandGlobSync } from "https://deno.land/std@0.140.0/fs/expand_glob.ts"; +import * as stdPath from "https://deno.land/std@0.140.0/path/mod.ts"; export class DenoRuntime { fs = new DenoRuntimeFileSystem(); diff --git a/packages/common/src/runtimes/DenoRuntime.ts b/packages/common/src/runtimes/DenoRuntime.ts index fc6347973..31dc98ef6 100644 --- a/packages/common/src/runtimes/DenoRuntime.ts +++ b/packages/common/src/runtimes/DenoRuntime.ts @@ -1,9 +1,9 @@ // @ts-ignore -import { ensureDir, ensureDirSync } from "https://deno.land/std@0.128.0/fs/ensure_dir.ts"; +import { ensureDir, ensureDirSync } from "https://deno.land/std@0.140.0/fs/ensure_dir.ts"; // @ts-ignore -import { expandGlob, expandGlobSync } from "https://deno.land/std@0.128.0/fs/expand_glob.ts"; +import { expandGlob, expandGlobSync } from "https://deno.land/std@0.140.0/fs/expand_glob.ts"; // @ts-ignore -import * as stdPath from "https://deno.land/std@0.128.0/path/mod.ts"; +import * as stdPath from "https://deno.land/std@0.140.0/path/mod.ts"; declare var Deno: any; diff --git a/packages/scripts/deps.ts b/packages/scripts/deps.ts index 3e94e7069..539a7d7d7 100644 --- a/packages/scripts/deps.ts +++ b/packages/scripts/deps.ts @@ -1,2 +1,2 @@ -export * as path from "https://deno.land/std@0.128.0/path/mod.ts"; +export * as path from "https://deno.land/std@0.140.0/path/mod.ts"; export * as tsMorph from "https://deno.land/x/ts_morph@14.0.0/mod.ts";