Build the new version

This commit is contained in:
Nikita Karamov 2022-02-10 20:32:52 +01:00
parent 73b54c385a
commit 305751a361
No known key found for this signature in database
GPG Key ID: 3C8E688C96EEB9C9
1 changed files with 5 additions and 12 deletions

View File

@ -99,15 +99,8 @@ const getOutput = (baseDir) => {
];
};
export default [
{
input: join(__dirname, "src", "autoinit.js"),
output: getOutput(outputDir),
plugins: getPlugins(true),
},
{
input: join(__dirname, "src", "shareon.js"),
output: getOutput(join(outputDir, "noinit")),
plugins: getPlugins(false),
},
];
export default {
input: join(__dirname, "src", "index.js"),
output: getOutput(outputDir),
plugins: getPlugins(true),
};