Skip to main content
Module

x/stream_response/scripts/build_npm.ts

Fetch API Response objects made from async generators.
Latest
File
#!/usr/bin/env -S deno run --allow-read --allow-write=./,/Users/qwtel/Library/Caches/deno --allow-net --allow-env=HOME,DENO_AUTH_TOKENS,DENO_DIR --allow-run=git,pnpm
import { basename, extname } from "https://deno.land/std@0.133.0/path/mod.ts";import { build, emptyDir } from "https://deno.land/x/dnt/mod.ts";
import { copyMdFiles, mkPackage,} from 'https://gist.githubusercontent.com/qwtel/ecf0c3ba7069a127b3d144afc06952f5/raw/latest-version.ts'
await emptyDir("./npm");
const name = basename(Deno.cwd())
await build({ entryPoints: ["./index.ts"], outDir: "./npm", shims: {}, test: false, package: await mkPackage(name), declaration: true, packageManager: 'pnpm', compilerOptions: { sourceMap: true, target: 'ES2019' }, mappings: { "https://ghuc.cc/qwtel/whatwg-stream-to-async-iter/index.ts": { name: "whatwg-stream-to-async-iter", version: "latest", }, "https://ghuc.cc/qwtel/typed-array-utils/index.ts": { name: "typed-array-utils", version: "latest", }, },});
// post build stepsawait copyMdFiles()