mirror of
https://github.com/projectstorm/react-diagrams.git
synced 2025-08-26 16:01:30 +08:00
general improvements
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,6 +1,8 @@
|
|||||||
dist/
|
dist/
|
||||||
dist/main.js
|
dist/main.js
|
||||||
dist/main.js.map
|
dist/main.js.map
|
||||||
|
/package
|
||||||
|
*.tgz
|
||||||
|
|
||||||
.out
|
.out
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ docs
|
|||||||
.storybook
|
.storybook
|
||||||
.circleci
|
.circleci
|
||||||
tests
|
tests
|
||||||
|
*.md
|
||||||
|
|
||||||
# Created by https://www.gitignore.io/api/net,netbeans,sublimetext,phpstorm,windows,osx,node
|
# Created by https://www.gitignore.io/api/net,netbeans,sublimetext,phpstorm,windows,osx,node
|
||||||
|
|
||||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,3 +1,14 @@
|
|||||||
|
__5.1.0__
|
||||||
|
|
||||||
|
* [api] Rename XXXFactory into AbstractXXXFactory
|
||||||
|
* [refactor] tslint and prettier are now the same
|
||||||
|
* [refactor] Each class now explicitely has its own class file (consistency)
|
||||||
|
* [feature] Smooth vertical links (no longer limited to horizontal)
|
||||||
|
* [feature] Dedicated documentation via gitbook
|
||||||
|
* [bug] forgot to export some
|
||||||
|
* [refactor] consistently use lodash where possible
|
||||||
|
* [maintenance] upgrade node modules
|
||||||
|
|
||||||
__5.0.0__ http://dylanv.blog/2018/03/03/storm-react-diagrams-5-0-0/
|
__5.0.0__ http://dylanv.blog/2018/03/03/storm-react-diagrams-5-0-0/
|
||||||
|
|
||||||
PR: https://github.com/projectstorm/react-diagrams/pull/145
|
PR: https://github.com/projectstorm/react-diagrams/pull/145
|
||||||
|
@ -8,7 +8,7 @@ const production = process.env.NODE_ENV === 'production';
|
|||||||
if (production) {
|
if (production) {
|
||||||
console.log("creating production build");
|
console.log("creating production build");
|
||||||
plugins.push(new webpack.DefinePlugin({
|
plugins.push(new webpack.DefinePlugin({
|
||||||
'process.env.NODE_ENV': 'production',
|
'process.env.NODE_ENV': '"production"',
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user