Skip to content

Commit

Permalink
Up to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tachyon-ops committed Jul 3, 2020
1 parent 16c15b3 commit 6527ccb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
19 changes: 10 additions & 9 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
// babel.config.js
module.exports = {
presets: [
[
"@babel/preset-env",
{
targets: {
node: "current"
}
}
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
'@babel/preset-react',
'@babel/preset-typescript',
]
],
};
17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-rb-auth",
"version": "0.0.4",
"version": "1.0.0",
"description": "Simple Role Based Auth for react projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -25,17 +25,22 @@
},
"homepage": "https://gitlab.com/nmpribeiro/react-role-based-auth/blob/master/README.md",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/react": "^16.9.41",
"@types/react-router-dom": "^5.1.5",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"jest": "^24.9.0",
"mocha": "^7.0.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.7.4"
},
"jest": {
Expand Down Expand Up @@ -80,9 +85,9 @@
"watchPlugins": [],
"verbose": true
},
"dependencies": {
"@types/react-router-dom": "^5.1.5",
"react": "^16.13.1",
"peerDependencies": {
"react": "^16.6.1",
"react-dom": "^16.6.3",
"react-router-dom": "^5.2.0"
}
}

0 comments on commit 6527ccb

Please sign in to comment.