From c02c68cddb7bf6bceee594b63f0f7e31c8f7449b Mon Sep 17 00:00:00 2001 From: Jake O'Shannessy Date: Mon, 15 Jul 2024 23:05:56 +0100 Subject: [PATCH] add version specifier for @std/path --- deno.lock | 6 +++++- process.ts | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/deno.lock b/deno.lock index ca48df8..67c087a 100644 --- a/deno.lock +++ b/deno.lock @@ -3,7 +3,8 @@ "packages": { "specifiers": { "jsr:@std/assert@^0.226.0": "jsr:@std/assert@0.226.0", - "jsr:@std/path": "jsr:@std/path@0.225.2" + "jsr:@std/path": "jsr:@std/path@0.225.2", + "jsr:@std/path@1.0.0": "jsr:@std/path@1.0.0" }, "jsr": { "@std/assert@0.226.0": { @@ -14,6 +15,9 @@ "dependencies": [ "jsr:@std/assert@^0.226.0" ] + }, + "@std/path@1.0.0": { + "integrity": "77fcb858b6e38777d1154df0f02245ba0b07e2c40ca3c0eec57c9233188c2d21" } } }, diff --git a/process.ts b/process.ts index 555332b..22bfcf0 100644 --- a/process.ts +++ b/process.ts @@ -1,4 +1,4 @@ -import * as path from "jsr:@std/path"; +import * as path from "jsr:@std/path@1.0.0"; import { SmvRpc } from "./rpc.ts"; export class SmokeviewProcess {