Skip to main content
Module

x/stream_response/scripts/build_npm.ts

Fetch API Response objects made from async generators.
Go to 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
// ex. scripts/build_npm.tsimport { 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 { latestVersion, copyMdFiles, getDescription, getGHTopics, getGHLicense, getGHHomepage,} 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: { // package.json properties name: `@worker-tools/${name}`, version: await latestVersion(), description: await getDescription(), license: await getGHLicense(name) ?? 'MIT', publishConfig: { access: "public" }, author: "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)", repository: { type: "git", url: `git+https://github.com/worker-tools/${name}.git`, }, bugs: { url: `https://github.com/worker-tools/${name}/issues`, }, homepage: await getGHHomepage(name) ?? `https://github.com/worker-tools/${name}#readme`, keywords: await getGHTopics(name) ?? [], }, 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: "^0.5.0", }, },});
// post build stepsawait copyMdFiles()