Skip to content

Commit a98e874

Browse files
authored
greenkeep (#644)
1 parent 33bbbe3 commit a98e874

File tree

3 files changed

+619
-376
lines changed

3 files changed

+619
-376
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"build:prod:main": "rollup -c scripts/prod.js",
2222
"build:prod:es5": "rollup -c scripts/prod.es5.js",
2323
"build": "npm-run-all --serial build:prod:* copy:flow",
24-
"test": "cross-env NODE_ENV='test' tsc && avaron lib/index.test.js --renderer",
24+
"test": "cross-env NODE_ENV='test' npm run tsc && avaron lib/index.test.js --renderer",
2525
"copy:flow": "cpy src/index.js.flow lib && cpy src/index.js.flow lib --rename index.es5.js.flow",
2626
"test:ci": "npm run flow && npm run build",
2727
"prepublish": "npm run build",
@@ -40,20 +40,20 @@
4040
},
4141
"homepage": "https://github.com/bokuweb/react-rnd",
4242
"devDependencies": {
43-
"@babel/cli": "7.8.0",
44-
"@babel/core": "7.8.0",
45-
"@babel/plugin-proposal-class-properties": "7.8.0",
46-
"@babel/plugin-transform-modules-commonjs": "7.8.0",
47-
"@babel/preset-react": "7.8.0",
48-
"@babel/preset-typescript": "7.8.0",
49-
"@babel/traverse": "7.8.0",
50-
"@babel/types": "7.8.0",
43+
"@babel/cli": "7.8.4",
44+
"@babel/core": "7.8.4",
45+
"@babel/plugin-proposal-class-properties": "7.8.3",
46+
"@babel/plugin-transform-modules-commonjs": "7.8.3",
47+
"@babel/preset-react": "7.8.3",
48+
"@babel/preset-typescript": "7.8.3",
49+
"@babel/traverse": "7.8.4",
50+
"@babel/types": "7.8.3",
5151
"@emotion/core": "10.0.27",
52-
"@storybook/addon-actions": "5.3.1",
53-
"@storybook/addon-info": "5.3.1",
54-
"@storybook/addon-links": "5.3.1",
55-
"@storybook/addon-options": "5.3.1",
56-
"@storybook/react": "5.3.1",
52+
"@storybook/addon-actions": "5.3.12",
53+
"@storybook/addon-info": "5.3.12",
54+
"@storybook/addon-links": "5.3.12",
55+
"@storybook/addon-options": "5.3.12",
56+
"@storybook/react": "5.3.12",
5757
"@types/enzyme": "3.1.16",
5858
"@types/enzyme-adapter-react-16": "1.0.5",
5959
"@types/node": "^12.0.10",
@@ -68,7 +68,7 @@
6868
"babel-loader": "8.0.6",
6969
"cpy-cli": "2.0.0",
7070
"cross-env": "6.0.3",
71-
"enzyme": "3.8.0",
71+
"enzyme": "3.11.0",
7272
"enzyme-adapter-react-16": "1.9.1",
7373
"gh-pages": "2.0.1",
7474
"light-ts-loader": "1.1.2",
@@ -77,20 +77,20 @@
7777
"react": "16.12.0",
7878
"react-dom": "16.12.0",
7979
"react-test-renderer": "16.12.0",
80-
"rollup": "1.17.0",
80+
"rollup": "1.31.0",
8181
"rollup-plugin-babel": "4.3.3",
82-
"rollup-plugin-commonjs": "10.0.1",
82+
"rollup-plugin-commonjs": "10.1.0",
8383
"rollup-plugin-node-globals": "1.4.0",
8484
"rollup-plugin-node-resolve": "5.2.0",
8585
"rollup-plugin-replace": "2.2.0",
8686
"rollup-plugin-typescript2": "0.22.0",
8787
"rollup-watch": "4.3.1",
88-
"sinon": "8.0.4",
88+
"sinon": "8.1.1",
8989
"tslint": "5.20.1",
9090
"tslint-eslint-rules": "5.4.0",
9191
"tslint-plugin-prettier": "2.1.0",
92-
"tslint-react": "4.1.0",
93-
"typescript": "3.7.4"
92+
"tslint-react": "4.2.0",
93+
"typescript": "3.7.5"
9494
},
9595
"files": [
9696
"lib"
@@ -99,7 +99,7 @@
9999
"fixture": "./fixture.html"
100100
},
101101
"dependencies": {
102-
"re-resizable": "6.1.1",
102+
"re-resizable": "6.2.0",
103103
"react-draggable": "4.2.0",
104104
"tslib": "1.10.0"
105105
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
5757
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
5858
},
59-
"exclude": ["stories", "lib"],
59+
"exclude": ["stories", "lib", "node_modules"],
6060
"include": [
6161
"src"
6262
]

0 commit comments

Comments
 (0)