v1.1.0: Stable!
This commit is contained in:
12
valdi/rollup.config.js
Normal file
12
valdi/rollup.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
input: "./build/typescript/main.js",
|
||||
output: {
|
||||
file: "./build/loader.js",
|
||||
format: "iife",
|
||||
},
|
||||
onwarn(warning, warn) {
|
||||
// Eval is intentional for the Valdi console; silence Rollup's advisory.
|
||||
if (warning.code === "EVAL") return;
|
||||
warn(warning);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user