Skip to content

Commit

Permalink
Fix build tools deprecation warnings (#110)
Browse files Browse the repository at this point in the history
Fix build tools deprecation warnings
  • Loading branch information
marvinhagemeister authored Jul 13, 2019
2 parents ea05501 + 676bdc2 commit e87b1ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"transpile": "microbundle src/index.js -f es,umd --target web --external preact",
"transpile:jsx": "microbundle src/jsx.js -o dist/jsx.js --target web --external none && microbundle dist/jsx.js -o dist/jsx.js -f cjs",
"copy-typescript-definition": "copyfiles -f src/index.d.ts dist",
"test": "eslint src test && tsc && mocha --compilers js:babel-register test/**/*.js",
"test": "eslint src test && tsc && mocha -r babel-core/register test/**/*.js",
"prepublish": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
Expand All @@ -36,6 +36,11 @@
"react/no-danger": 0,
"jest/valid-expect": 0,
"new-cap": 0
},
"settings": {
"react": {
"version": "16.8"
}
}
},
"babel": {
Expand Down

0 comments on commit e87b1ba

Please sign in to comment.