chore: fix lint

This commit is contained in:
Sachin Kumar 2023-06-21 06:08:41 +05:30
parent 6c5bb465b8
commit 4615bc07c3
4 changed files with 9 additions and 3 deletions

6
examples/node_modules/.package-lock.json generated vendored Normal file
View File

@ -0,0 +1,6 @@
{
"name": "examples",
"lockfileVersion": 2,
"requires": true,
"packages": {}
}

1
examples/node_modules/module.js generated vendored
View File

@ -1 +0,0 @@
module.exports = "module";

1
examples/package.json Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -1,9 +1,9 @@
const path = require("path");
module.exports = {
output: {
output: {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "minimal"
};
};