mirror of
https://github.com/titaniumnetwork-dev/Ultraviolet.git
synced 2025-05-16 04:50:01 -04:00
uv
This commit is contained in:
parent
b9b6aee734
commit
82f5f76588
66 changed files with 74967 additions and 1 deletions
17
bundle.js
Normal file
17
bundle.js
Normal 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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue