diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d66dd60 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# v0.1.2 + +- fix: documentation + +# v0.1.1 + +- chore: code cleanups + +# v0.1.0 + +- Initial release diff --git a/package.json b/package.json index 87d1524..7858070 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "formplex-react", - "version": "0.1.1", + "version": "0.1.2", "description": "Incredibly easy & flexible React form hooks", "keywords": [ "react", diff --git a/webpack.config.js b/webpack.config.js index 08ef9df..4a45b05 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -21,7 +21,10 @@ const config = { // Add your plugins here // Learn more about plugins from https://webpack.js.org/configuration/plugins/ new CopyPlugin({ - patterns: [{ from: 'package.json', to: '.' }], + patterns: [ + { from: 'package.json', to: '.' }, + { from: 'README.md', to: '.' }, + ], }), ], module: {