File tree Expand file tree Collapse file tree 7 files changed +16
-8
lines changed
Expand file tree Collapse file tree 7 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 11{
2+ "imports" : {
3+ "alea" : " https://esm.sh/alea@1.0.1?pin=v132" ,
4+ "seed" : " https://deno.land/x/seed@1.0.0/index.ts" ,
5+ "dnt" : " https://deno.land/x/dnt@0.28.0/mod.ts" ,
6+ "gaussian" : " https://deno.land/x/gaussian@v0.1.0/mod.ts" ,
7+ "@std/fs" : " jsr:@std/fs@^1.0.8" ,
8+ "@std/assert" : " jsr:@std/assert@^1.0.8"
9+ },
210 "tasks" : {
311 "test" : " deno test" ,
412 "build:npm" : " deno run -A tasks/build-npm.ts" ,
Original file line number Diff line number Diff line change 88 * from a working page and injects them into all broken pages.
99 */
1010
11- import { walk } from "https://deno.land/std@0.208.0 /fs/walk.ts " ;
11+ import { walk } from "@std /fs/walk" ;
1212
1313const builtDir = "built" ;
1414
Original file line number Diff line number Diff line change 11export * as graphql from "https://esm.sh/graphql@16.6.0?pin=v132" ;
22export * from "https://deno.land/x/continuation@0.1.0/mod.ts" ;
3- export * from "https://deno.land/x/ seed@1.0.0/index.ts " ;
4- export { assert } from "https://deno.land/std@0.145.0/testing/asserts.ts " ;
3+ export * from "seed" ;
4+ export { assert } from "@std/assert " ;
55export { default as globToRegExp } from "https://esm.sh/glob-to-regexp@0.4.1?pin=v132" ;
66export { default as hash } from "https://esm.sh/hash.js@1.1.7?pin=v132" ;
77
8- import * as alea from "https://esm.sh/ alea@1.0.1?pin=v132 " ;
8+ import * as alea from "alea" ;
99export const Alea = alea . default ;
Original file line number Diff line number Diff line change 1- import { gaussian } from "https://deno.land/x/ gaussian@v0.1.0/mod.ts " ;
1+ import { gaussian } from "gaussian" ;
22
33export interface Distribution < T > {
44 description : string ;
Original file line number Diff line number Diff line change 11// deno-lint-ignore-file no-explicit-any
2- import { assert } from "https://deno.land/std@0.140.0/testing/asserts.ts " ;
2+ import { assert } from "@std/assert " ;
33
44import {
55 constant ,
Original file line number Diff line number Diff line change 1- import { Seed } from "https://deno.land/x/ seed@1.0.0/index.ts " ;
1+ import { Seed } from "seed" ;
22
33export function seedrandom ( key ?: string ) {
44 let seed = new Seed ( key ) ;
Original file line number Diff line number Diff line change 1- import { build , emptyDir } from "https://deno.land/x/ dnt@0.28.0/mod.ts " ;
1+ import { build , emptyDir } from "dnt" ;
22
33const outDir = "./build/npm" ;
44
You can’t perform that action at this time.
0 commit comments