From 7f3c285ebd9017a7c75c18f2f761edbbe72c4cda Mon Sep 17 00:00:00 2001 From: Nik Graf Date: Fri, 25 Mar 2016 22:21:44 -0700 Subject: [PATCH] bump editor version --- CHANGELOG.md | 2 +- draft-js-plugins-editor/.npmignore | 5 +++++ draft-js-plugins-editor/CHANGELOG.md | 20 ++++++++++++++++++++ draft-js-plugins-editor/package.json | 10 +++++----- 4 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 draft-js-plugins-editor/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 134ea9e92e..e32ef100c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,4 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## To Be Released +## Checkout the CHANGELOG.md of each package … diff --git a/draft-js-plugins-editor/.npmignore b/draft-js-plugins-editor/.npmignore index 56740fd9cc..c286afee99 100644 --- a/draft-js-plugins-editor/.npmignore +++ b/draft-js-plugins-editor/.npmignore @@ -5,6 +5,11 @@ node_modules # sources /src/ +webpack.config.js +.babelrc +.gitignore +README.md +CHANGELOG.md # NPM debug npm-debug.log diff --git a/draft-js-plugins-editor/CHANGELOG.md b/draft-js-plugins-editor/CHANGELOG.md new file mode 100644 index 0000000000..5303eca274 --- /dev/null +++ b/draft-js-plugins-editor/CHANGELOG.md @@ -0,0 +1,20 @@ +# Change Log + +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/). + +## To Be Released + +## 0.2.0 - 2016-03-25 + +### Changed + +- Move DraftJS & ImmutableJS to peerDependencies instead of dependencies. + +## 0.1.0 - 2016-03-25 + +### Added +- Allow to provide a custom handleKeyCommand to the Editor. + +## 0.0.0 - 2016-03-23 +### Released the first working of DraftJS Plugins Editor diff --git a/draft-js-plugins-editor/package.json b/draft-js-plugins-editor/package.json index 1bc1471ba4..f2bd7254e9 100644 --- a/draft-js-plugins-editor/package.json +++ b/draft-js-plugins-editor/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-plugins-editor", - "version": "0.0.0", + "version": "0.2.0", "description": "Editor for DraftJS Plugins", "author": { "name": "Nik Graf", @@ -23,8 +23,10 @@ "react-component" ], "peerDependencies": { - "react": ">=0.14.0 || 15.0.0-rc.2", - "react-dom": ">=0.14.0 || 15.0.0-rc.2" + "draft-js": ">=0.3.0", + "immutable": ">=3.7.6", + "react": ">=0.14.0 || 15.0.0-rc", + "react-dom": ">=0.14.0 || 15.0.0-rc" }, "scripts": { "build": "BABEL_ENV=production ../node_modules/.bin/babel --out-dir='lib' --ignore='__tests__/*' src", @@ -33,9 +35,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "draft-js": "^0.3.0", "find-with-regex": "^1.0.2", - "immutable": "^3.7.6", "union-class-names": "^1.0.0" } }