This commit is contained in:
Like Zhu 2021-06-08 09:55:18 -07:00
Родитель e2c0eb03d5
Коммит d82db5f389
2 изменённых файлов: 16 добавлений и 0 удалений

Просмотреть файл

@ -4,6 +4,9 @@
"version": "0.1.0",
"main": "dist/index",
"license": "MIT",
"scripts": {
"build": "webpack"
},
"dependencies": {
"bluebird": "3.5.0",
"json-stable-stringify": "*",
@ -13,5 +16,9 @@
"regenerator-runtime": "^0.13.2",
"underscore": "^1.10.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
}
}

Просмотреть файл

@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.bundle.js',
},
};