Bump deno version
This commit is contained in:
parent
a2dbf7b3db
commit
0e66920550
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
||||
- name: Setup Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.38
|
||||
deno-version: v1.39
|
||||
|
||||
- name: Run bundle build
|
||||
run: |
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
- name: Setup Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.38
|
||||
deno-version: v1.39
|
||||
- name: Run build
|
||||
run: deno task build
|
||||
- name: Bundle
|
||||
|
2
.github/workflows/server.yml
vendored
2
.github/workflows/server.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
||||
- name: Setup Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.38
|
||||
deno-version: v1.39
|
||||
|
||||
- name: Build bundles
|
||||
run: |
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM lukechannings/deno:v1.39.0
|
||||
FROM lukechannings/deno:v1.39.4
|
||||
# The volume that will keep the space data
|
||||
|
||||
# Either create a volume:
|
||||
|
@ -2,7 +2,7 @@ import { AssetBundle } from "../plugos/asset_bundle/bundle.ts";
|
||||
import { compileManifest } from "../plugos/compile.ts";
|
||||
import { esbuild } from "../plugos/deps.ts";
|
||||
import { runPlug } from "./plug_run.ts";
|
||||
import assets from "../dist/plug_asset_bundle.json" with { type: "json" };
|
||||
import assets from "../dist/plug_asset_bundle.json" assert { type: "json" };
|
||||
import { assertEquals } from "../test_deps.ts";
|
||||
import { path } from "../common/deps.ts";
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { runPlug } from "../cli/plug_run.ts";
|
||||
import { path } from "../common/deps.ts";
|
||||
import assets from "../dist/plug_asset_bundle.json" with {
|
||||
import assets from "../dist/plug_asset_bundle.json" assert {
|
||||
type: "json",
|
||||
};
|
||||
import { AssetBundle } from "../plugos/asset_bundle/bundle.ts";
|
||||
|
@ -2,7 +2,7 @@ import { HttpServer } from "../server/http_server.ts";
|
||||
import clientAssetBundle from "../dist/client_asset_bundle.json" with {
|
||||
type: "json",
|
||||
};
|
||||
import plugAssetBundle from "../dist/plug_asset_bundle.json" with {
|
||||
import plugAssetBundle from "../dist/plug_asset_bundle.json" assert {
|
||||
type: "json",
|
||||
};
|
||||
import { AssetBundle, AssetJson } from "../plugos/asset_bundle/bundle.ts";
|
||||
|
Loading…
Reference in New Issue
Block a user