Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
build.js 303 B
Newer Older
Pierre Jarriges's avatar
Pierre Jarriges committed
#!/usr/bin/env node
const { bundle } = require("simple-browser-js-bundler");
const path = require("path");
const dir = process.cwd();

bundle(
    `${dir}/src/index.js`,
    path.resolve(dir, "../public/views/admin-panel/assets/bundle.js"),
    {
        minify: !process.argv.includes("debug")
    }
);