This commit is contained in:
Jason 2022-02-14 00:25:17 -05:00
parent b9b6aee734
commit 82f5f76588
66 changed files with 74967 additions and 1 deletions

17
bundle.js Normal file
View file

@ -0,0 +1,17 @@
import webpack from "webpack";
import path from "path";
const __dirname = path.resolve(path.dirname(decodeURI(new URL(import.meta.url).pathname))).slice(3);
console.log(__dirname);
webpack({
mode: 'none',
entry: path.join(__dirname, './rewrite/index.js'),
output: {
path: __dirname,
filename: './lib/uv.bundle.js',
}
}, (err, i) =>
console.log(!err ? 'Ultraviolet bundled!' : e)
);