From e0c732ad47d50441072ed729747b9c3ba91d842c Mon Sep 17 00:00:00 2001 From: Tyler Long Date: Sun, 4 Jun 2017 15:26:45 +0800 Subject: [PATCH] Update readme --- README.md | 7 +++---- webpack.config.base.js | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6017b4b8de..c41e985b1e 100644 --- a/README.md +++ b/README.md @@ -148,8 +148,6 @@ represent the project when answering questions and issues. Together we could continue the work with things like: * port the code to es6 -* improved support for webpack -* modernizing the build * adding more typers of diagrams like mindmaps, ert digrams etc * improving existing diagrams @@ -195,11 +193,12 @@ Manual test in Node.js: node dist/demo/index.js -## Distribtion +## Release yarn dist + npm publish -Command above generates files into the `dist` folder, then you can publish them to npmjs.org. +Command above generates files into the `dist` folder and publishes them to npmjs.org. # Credits diff --git a/webpack.config.base.js b/webpack.config.base.js index dec540b7d8..0e5ee761b1 100644 --- a/webpack.config.base.js +++ b/webpack.config.base.js @@ -7,7 +7,7 @@ const rules = [ parser: { amd: false }, - include: /node_modules\/lodash\// + include: /node_modules\/lodash\// // https://github.com/lodash/lodash/issues/3052 } ]