Skip to content

Commit 6d49dbc

Browse files
committed
Merge branch 'develop' into master
2 parents 7ef0c4a + 0528957 commit 6d49dbc

File tree

6 files changed

+935
-1228
lines changed

6 files changed

+935
-1228
lines changed

.babelrc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
{
22
"presets": ["@babel/preset-env", "@babel/preset-react"],
3+
"plugins": [
4+
"@babel/plugin-transform-runtime",
5+
"@babel/plugin-proposal-class-properties"
6+
],
37
"env": {
4-
"test": {
5-
"presets": ["@babel/preset-env", "@babel/preset-react"],
6-
"plugins": ["@babel/plugin-proposal-class-properties"]
8+
"production": {
9+
"plugins": [
10+
["transform-react-remove-prop-types", {
11+
"removeImport": true
12+
}]
13+
]
714
}
815
}
916
}

example/package-lock.json

Lines changed: 84 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@
2323
},
2424
"homepage": "https://github.com/michaeldzjap/react-signature-pad-wrapper#readme",
2525
"dependencies": {
26-
"@babel/runtime": "^7.11.0",
26+
"@babel/runtime": "^7.11.2",
2727
"bulma": "^0.9.0",
2828
"react": "^16.13.1",
2929
"react-dom": "^16.13.1"
3030
},
3131
"devDependencies": {
32-
"@babel/core": "^7.11.0",
32+
"@babel/core": "^7.11.4",
3333
"@babel/plugin-proposal-class-properties": "^7.10.4",
3434
"@babel/preset-env": "^7.11.0",
3535
"@babel/preset-react": "^7.10.4",
3636
"@babel/register": "^7.10.5",
3737
"babel-eslint": "^10.1.0",
3838
"babel-loader": "^8.1.0",
39-
"eslint": "^7.5.0",
40-
"eslint-plugin-react": "^7.20.5",
39+
"eslint": "^7.7.0",
40+
"eslint-plugin-react": "^7.20.6",
4141
"webpack": "^4.44.1",
4242
"webpack-cli": "^3.3.12"
4343
}

0 commit comments

Comments
 (0)