Skip to main content
Module

x/extendable_promise/scripts/build_npm.ts

A promise that can be delayed (extended) via repeated calls to waitUntil.
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://deno.land/x/resolvable_promise/index.ts': { name: '@worker-tools/resolvable-promise', version: '^0.2.0-pre.4', } }});
// post build stepsawait copyMdFiles()