@jtoar/redwood-issues
Advanced tools
Comparing version 0.0.1 to 0.0.2
import { Deno } from "@deno/shim-deno"; | ||
export { Deno } from "@deno/shim-deno"; | ||
import { alert, confirm, prompt } from "@deno/shim-prompts"; | ||
export { alert, confirm, prompt } from "@deno/shim-prompts"; | ||
const dntGlobals = { | ||
Deno, | ||
alert, | ||
confirm, | ||
prompt, | ||
}; | ||
@@ -6,0 +11,0 @@ export const dntGlobalThis = createMergeProxy(globalThis, dntGlobals); |
@@ -0,1 +1,2 @@ | ||
import * as dntShim from "./_dnt.shims.js"; | ||
import $ from "./deps/deno.land/x/dax@0.35.0/mod.js"; | ||
@@ -35,3 +36,3 @@ import { findUp } from "./deps/deno.land/x/find_up_deno@0.1.2/mod.js"; | ||
const filesPrompt = Object.entries(data).filter(exists).map(([_, { path }]) => `- ${path}`).join("\n"); | ||
const promptRes = await prompt([ | ||
const promptRes = await dntShim.prompt([ | ||
"Ok to create secret gists shared with RedwoodJS for the following files?", | ||
@@ -38,0 +39,0 @@ filesPrompt, |
@@ -6,6 +6,7 @@ { | ||
"name": "@jtoar/redwood-issues", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Tooling for Redwood issues", | ||
"dependencies": { | ||
"@deno/shim-deno": "~0.16.1" | ||
"@deno/shim-deno": "~0.16.1", | ||
"@deno/shim-prompts": "~0.1.0" | ||
}, | ||
@@ -12,0 +13,0 @@ "devDependencies": { |
846276
17889
2
+ Added@deno/shim-prompts@~0.1.0
+ Added@deno/shim-prompts@0.1.1(transitive)