archive
/
givemoneyto.me
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
givemoneyto.me/index.ts

21 lines
425 B
TypeScript

import Bundler from 'parcel-bundler';
import { join } from 'path';
import rimraf from 'rimraf';
const BUILD_DIR = join(__dirname, 'build');
const SRC_DIR = join(__dirname, 'src');
const BUNDLER_OPTIONS = {
outDir: BUILD_DIR,
watch: false,
minify: true,
};
(async function() {
rimraf.sync(BUILD_DIR);
const bundler = new Bundler(join(SRC_DIR, 'template.html'), BUNDLER_OPTIONS);
await bundler.bundle();
})();