Skip to content

Commit

Permalink
fix(build): Update DNT build system to fix Webpack builds (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Feb 5, 2022
1 parent 66caa43 commit 7b7033b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from 'https://deno.land/std@0.115.1/path/mod.ts';
import { build } from 'https://deno.land/x/dnt@0.7.2/mod.ts';
import { build } from 'https://deno.land/x/dnt@0.17.0/mod.ts';
import hooksPackage from './hooks/package.json.ts';

const __dirname = new URL('.', import.meta.url).pathname;
Expand All @@ -13,6 +13,7 @@ const buildModule = async (name: string) => {
entryPoints: [path.join(inDir, 'src/index.ts')],
outDir,
test: false,
shims: {},
compilerOptions: {
importHelpers: false,
},
Expand Down

0 comments on commit 7b7033b

Please sign in to comment.