diff --git a/README.md b/README.md index d95a7fd..fe4a7ea 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ The create-react-app of embeddable widgets. - [x] React widget (widget builder) - [x] Webpack changed to output a library - [x] Add tests +- [x] Production Build +- [x] Minified +- [ ] Obfuscation - [ ] Add greenkeeper - [ ] Integrate eslint with webpack - [ ] Theming support diff --git a/package.json b/package.json index 7bf78e2..3b3c2a4 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,9 @@ "/jest/setup.js" ] }, + "serve": { + "content": ["./dist", "./public"] + }, "author": "seriousben https://github.com/seriousben", "license": "MIT", "devDependencies": { diff --git a/webpack.config.js b/webpack.config.js index 9df3029..ab62c32 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -43,8 +43,5 @@ module.exports = { library: 'EmbeddableWidget', libraryExport: 'default', libraryTarget: 'window', - }, - serve: { - content: ['./dist', './public'], - }, + } };