fix types add changelog

This commit is contained in:
Dylan Vorster
2018-02-25 14:04:59 +02:00
parent 8566c12ccc
commit 30195af8ca
3 changed files with 20 additions and 3 deletions

View File

@@ -1,3 +1,20 @@
__5.0.0__
PR: https://github.com/projectstorm/react-diagrams/pull/145
* [refactor] Links completely overhauled
* [feature] Smart Routing
* [feature] Flow support
* [demo] Smart Routing
* [demo] Animated links
* [api] Bootstrapping Improvements
* [feature] add custom properties to all widgets
* [refactor] use BEM for all css
* [feature] Default Link factory hooks
* [tests] e2e tests + helper framework
* [tests] automatically load JEST Snapshots
* [feature] Link labels!
__4.0.0__ http://dylanv.blog/2018/01/18/storm-react-diagrams-v4-0-0/
* [refactor] Events system was completely overhauled

View File

@@ -17,7 +17,7 @@
"nodes"
],
"main": "./dist/main.js",
"typings": "./dist/src/main",
"typings": "./dist/@types/src/main",
"author": "dylanvorster",
"scripts": {
"test:ci": "rm -rf ./dist && node ./tests/e2e/generate-e2e.js && jest --no-cache",
@@ -25,7 +25,7 @@
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"storybook:github": "storybook-to-ghpages",
"prepublishOnly": "export NODE_ENV=production && webpack && ./node_modules/node-sass/bin/node-sass --output-style compressed ./src/sass/main.scss > ./dist/style.min.css",
"prepublishOnly": "rm -rf ./dist && export NODE_ENV=production && webpack && ./node_modules/node-sass/bin/node-sass --output-style compressed ./src/sass/main.scss > ./dist/style.min.css",
"pretty": "prettier --use-tabs --write \"{src,demos}/**/*.{ts,tsx}\" --print-width 120"
},
"dependencies": {

View File

@@ -4,7 +4,7 @@
"compilerOptions": {
"suppressExcessPropertyErrors": true,
"declaration": true,
"outDir": "dist",
"outDir": "@types",
"target": "es5",
"strictNullChecks": false,
"sourceMap": true,