1
0

Dependency bump

This commit is contained in:
Zef Hemel 2022-11-19 16:05:37 +01:00
parent a7f1a65035
commit dff2a3dfa4
14 changed files with 19 additions and 21 deletions

View File

@ -29,7 +29,7 @@ jobs:
# uses: denoland/setup-deno@v1
uses: denoland/setup-deno@d4873ceeec10de6275fecd1f94b6985369d40231
with:
deno-version: v1.27.2
deno-version: v1.28.1
- name: Run build
run: deno task build

View File

@ -3,14 +3,14 @@
import * as esbuildWasm from "https://deno.land/x/esbuild@v0.14.54/wasm.js";
import * as esbuildNative from "https://deno.land/x/esbuild@v0.14.54/mod.js";
import { denoPlugin } from "https://deno.land/x/esbuild_deno_loader@0.6.0/mod.ts"; //"./esbuild_deno_loader/mod.ts";
import { copy } from "https://deno.land/std@0.158.0/fs/copy.ts";
import { copy } from "https://deno.land/std@0.165.0/fs/copy.ts";
import sass from "https://deno.land/x/denosass@1.0.4/mod.ts";
import { bundleFolder } from "./plugos/asset_bundle/builder.ts";
import { patchDenoLibJS } from "./plugos/hack.ts";
import { bundle as plugOsBundle } from "./plugos/bin/plugos-bundle.ts";
import * as flags from "https://deno.land/std@0.158.0/flags/mod.ts";
import * as flags from "https://deno.land/std@0.165.0/flags/mod.ts";
// @ts-ignore trust me
const esbuild: typeof esbuildWasm = Deno.run === undefined

View File

@ -15,10 +15,10 @@ export type { Completion, CompletionResult } from "@codemirror/autocomplete";
export { styleTags, Tag, tagHighlighter, tags } from "@lezer/highlight";
export * as YAML from "https://deno.land/std@0.158.0/encoding/yaml.ts";
export * as path from "https://deno.land/std@0.158.0/path/mod.ts";
export * as YAML from "https://deno.land/std@0.165.0/encoding/yaml.ts";
export * as path from "https://deno.land/std@0.165.0/path/mod.ts";
export { readAll } from "https://deno.land/std@0.158.0/streams/conversion.ts";
export { readAll } from "https://deno.land/std@0.165.0/streams/conversion.ts";
export type {
BlockContext,

View File

@ -1,6 +1,6 @@
export { globToRegExp } from "https://deno.land/std@0.158.0/path/glob.ts";
export { walk } from "https://deno.land/std@0.159.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.158.0/path/mod.ts";
export { globToRegExp } from "https://deno.land/std@0.165.0/path/glob.ts";
export { walk } from "https://deno.land/std@0.165.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.165.0/path/mod.ts";
export { mime } from "https://deno.land/x/mimetypes@v1.0.0/mod.ts";
export { default as cacheDir } from "https://deno.land/x/cache_dir@0.2.0/mod.ts";
export * as flags from "https://deno.land/std@0.158.0/flags/mod.ts";
export * as flags from "https://deno.land/std@0.165.0/flags/mod.ts";

View File

@ -5,7 +5,7 @@ export {
resolve,
toFileUrl,
} from "https://deno.land/std@0.150.0/path/mod.ts";
export { basename, extname } from "https://deno.land/std@0.150.0/path/mod.ts";
export { basename, extname } from "https://deno.land/std@0.165.0/path/mod.ts";
export {
resolveImportMap,
resolveModuleSpecifier,

View File

@ -2,7 +2,6 @@ import { Manifest, RuntimeEnvironment } from "./types.ts";
import { Sandbox } from "./sandbox.ts";
import { System } from "./system.ts";
import { AssetBundle, AssetJson } from "./asset_bundle/bundle.ts";
import { resolve } from "https://deno.land/std@0.158.0/path/win32.ts";
export class Plug<HookT> {
system: System<HookT>;

View File

@ -4,7 +4,7 @@ import { System } from "./system.ts";
import {
assert,
assertEquals,
} from "https://deno.land/std@0.158.0/testing/asserts.ts";
} from "https://deno.land/std@0.165.0/testing/asserts.ts";
Deno.test("Run a deno sandbox", async () => {
const system = new System("server");

View File

@ -3,7 +3,6 @@ import { extractMeta } from "../directive/data.ts";
import { renderToText } from "$sb/lib/tree.ts";
import { niceDate } from "$sb/lib/dates.ts";
import { readSettings } from "$sb/lib/settings_page.ts";
import { regexp } from "https://deno.land/std@0.163.0/encoding/_yaml/type/regexp.ts";
export async function instantiateTemplateCommand() {
const allPages = await space.listPages();

View File

@ -1,5 +1,5 @@
name: global
dependencies:
"https://esm.sh/handlebars": "https://esm.sh/handlebars@4.7.7"
"https://deno.land/std/encoding/yaml.ts": "https://deno.land/std@0.158.0/encoding/yaml.ts"
"https://deno.land/std/encoding/yaml.ts": "https://deno.land/std@0.165.0/encoding/yaml.ts"
"https://esm.sh/@lezer/lr": "https://esm.sh/@lezer/lr@1.2.3"

View File

@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.152.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.165.0/testing/asserts.ts";
import { renderHtml } from "./html_render.ts";
Deno.test("HTML Render", () => {

View File

@ -12,7 +12,7 @@ import tasksPlug from "../../dist_bundle/_plug/tasks.plug.json" assert {
import { createSandbox } from "../../plugos/environments/deno_sandbox.ts";
import { loadMarkdownExtensions } from "../../common/markdown_ext.ts";
import { renderMarkdownToHtml } from "./markdown_render.ts";
import { assertEquals } from "https://deno.land/std@0.152.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.165.0/testing/asserts.ts";
Deno.test("Markdown render", async () => {
const system = new System<any>("server");

View File

@ -1,7 +1,7 @@
import type { FileMeta } from "../common/types.ts";
import { walk } from "https://deno.land/std@0.159.0/fs/mod.ts";
import { resolve } from "https://deno.land/std@0.159.0/path/mod.ts";
import { walk } from "https://deno.land/std@0.165.0/fs/mod.ts";
import { resolve } from "https://deno.land/std@0.165.0/path/mod.ts";
import { mime } from "https://deno.land/x/mimetypes@v1.0.0/mod.ts";
const rootDir = resolve("website_build/fs");

View File

@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.152.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.165.0/testing/asserts.ts";
import { AsyncSQLite } from "../../plugos/sqlite/async_sqlite.ts";
import { ensureTable, pageIndexSyscalls } from "./index.ts";

View File

@ -9,4 +9,4 @@ export {
fail,
unimplemented,
unreachable,
} from "https://deno.land/std@0.158.0/testing/asserts.ts";
} from "https://deno.land/std@0.165.0/testing/asserts.ts";