diff --git a/examples/node_modules/.package-lock.json b/examples/node_modules/.package-lock.json new file mode 100644 index 000000000..e8a80beda --- /dev/null +++ b/examples/node_modules/.package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "examples", + "lockfileVersion": 2, + "requires": true, + "packages": {} +} diff --git a/examples/node_modules/module.js b/examples/node_modules/module.js deleted file mode 100644 index f23403c2c..000000000 --- a/examples/node_modules/module.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = "module"; \ No newline at end of file diff --git a/examples/package.json b/examples/package.json new file mode 100644 index 000000000..0967ef424 --- /dev/null +++ b/examples/package.json @@ -0,0 +1 @@ +{} diff --git a/examples/stats-minimal/webpack.config.js b/examples/stats-minimal/webpack.config.js index f66a2c746..22fbf8330 100644 --- a/examples/stats-minimal/webpack.config.js +++ b/examples/stats-minimal/webpack.config.js @@ -1,9 +1,9 @@ const path = require("path"); module.exports = { - output: { + output: { path: path.join(__dirname, "dist"), filename: "output.js" }, stats: "minimal" -}; \ No newline at end of file +};