Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DNT build system to fix Webpack builds #99

Merged
merged 1 commit into from
Feb 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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