Skip to content

Commit

Permalink
fix: use github instead of deno.land
Browse files Browse the repository at this point in the history
  • Loading branch information
mindon committed Sep 10, 2024
1 parent 443eb0b commit 1c36da4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions bundle_util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export async function bundleByEsbuild(
if (tsconfigFile) {
const config = <{
compilerOptions: {
useDefineForClassFields: false,
experimentalDecorators: true;
jsx: CommonOptions["jsx"];
jsxFactory: CommonOptions["jsxFactory"];
Expand Down
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ export {
denoPlugins,
denoResolverPlugin,
} from "jsr:@luca/esbuild-deno-loader";
export { build, stop } from "https://deno.land/x/esbuild@v0.17.19/mod.js";
export { build, stop } from "https://raw.githubusercontent.com/esbuild/deno-esbuild/v0.17.19/mod.js";
export type {
BuildOptions,
CommonOptions,
OnResolveArgs,
Plugin,
PluginBuild,
} from "https://deno.land/x/esbuild@v0.17.19/mod.js";
} from "https://raw.githubusercontent.com/esbuild/deno-esbuild/v0.17.19/mod.js";
export { Document, DOMParser, Element } from "jsr:@b-fuze/deno-dom/wasm";

export { opn } from "https://raw.githubusercontent.com/hashrock/deno-opn/b358e4c7df5d1c6d5e634d2730ca491ba6062782/opn.ts";
export { serve as serveIterable } from "https://deno.land/x/iterable_file_server@v0.2.0/mod.ts";
export { serve as serveIterable } from "https://raw.githubusercontent.com/kt3k/iterable_file_server/main/mod.ts";

export const NAME = "packup";
export const VERSION = "v0.2.6";
Expand Down

0 comments on commit 1c36da4

Please sign in to comment.