From c7d3caaa50a1dc74e4427f88f1e7832fe4068d0e Mon Sep 17 00:00:00 2001 From: Fritz Lin Date: Wed, 14 Dec 2016 23:26:15 +0800 Subject: [PATCH] =?UTF-8?q?-=20fixes=20`=E2=80=9DTypeError:=20Path=20must?= =?UTF-8?q?=20be=20a=20string"=20after=20break=20from=20project`=20https:/?= =?UTF-8?q?/github.com/webpack/webpack/issues/2463#issuecomment-247314797?= =?UTF-8?q?=20-=20includes=20missing=20jquery=20as=20devDep=20-=20upgrades?= =?UTF-8?q?=20some=20other=20deps=20-=20improves=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++++--- package.json | 17 +++++++++-------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 877882f..643488a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - [x] Filter/Scroll/Insert/Delete - [x] Keyboard/Mouse events -- [x] Plain-Text based, no jquery, no extra nodes +- [x] Plain-text based, no jQuery, no extra nodes - [x] ContentEditable - [ ] Textarea @@ -15,9 +15,9 @@ - It is [buggy][buggy]. - It seems like out of maintainment. - It is based on jQuery. -- Its code is like "Spaghetti" and hard to read or modify. +- Its code is like "Spaghetti" and hard to read. -Finally I lost interest in [patching it][buggy] and ended up creating my at library. +Finally I lost interest in [patching it][buggy] and ended up creating my At-library. ```jsx import Editor from 'react-editor' @@ -27,6 +27,10 @@ const members = ['Roxie Miles', 'grace.carroll', '小浩'] + + +
+ ``` [at.js]: https://github.com/ichord/At.js diff --git a/package.json b/package.json index 08522fe..26e0dd3 100644 --- a/package.json +++ b/package.json @@ -11,27 +11,28 @@ "demo": "webpack -w --progress --config task/webpack.config.demo" }, "devDependencies": { - "babel-core": "^6.3.26", + "babel-core": "^6.20.0", "babel-eslint": "^4.1.8", - "babel-loader": "^6.2.0", - "babel-preset-es2015": "^6.3.13", - "babel-preset-react": "^6.3.13", - "babel-preset-stage-0": "^6.3.13", + "babel-loader": "^6.2.9", + "babel-preset-es2015": "^6.18.0", + "babel-preset-react": "^6.16.0", + "babel-preset-stage-0": "^6.16.0", "clean-webpack-plugin": "^0.1.14", "css-loader": "^0.23.1", "eslint": "^1.10.3", "eslint-config-rackt": "^1.1.1", "eslint-loader": "^1.3.0", "eslint-plugin-react": "^3.16.1", - "html-webpack-plugin": "^1.7.0", + "html-webpack-plugin": "^2.24.1", + "jquery": "^3.1.1", "node-sass": "^3.13.0", "react": "^15.4.1", "react-dom": "^15.4.1", "react-editor": "^1.2.11", "sass-loader": "^4.0.2", "style-loader": "^0.13.0", - "webpack": "^1.12.9", - "webpack-notifier": "^1.2.1" + "webpack": "^1.14.0", + "webpack-notifier": "^1.4.1" }, "peerDependencies": { "react": "*",