jsonpath-wasm publish

This commit is contained in:
freestrings
2019-04-13 22:27:33 +09:00
parent 35ef9f8c5e
commit 4a044ba250
38 changed files with 6515 additions and 257 deletions

View File

@ -0,0 +1,14 @@
const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require('path');
module.exports = {
entry: "./bootstrap.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bootstrap.js",
},
mode: "development",
plugins: [
new CopyWebpackPlugin(['index.html'])
]
};