Skip to content

Commit

Permalink
chore: open-sourcify the module for automatic publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Almouro committed Aug 12, 2018
1 parent ff450c6 commit b9520f6
Show file tree
Hide file tree
Showing 3 changed files with 5,345 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '10'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
24 changes: 21 additions & 3 deletions package.json
@@ -1,12 +1,12 @@
{
"name": "react-native-hide-with-keyboard",
"version": "1.1.1",
"version": "0.0.0-managed-by-semantic-release",
"description": "Hide components when keyboard is shown",
"main": "index.js",
"type": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bamlab/react-native-hide-with-keyboard.git"
"url": "https://github.com/bamlab/react-native-hide-with-keyboard.git"
},
"keywords": [
"react-native",
Expand All @@ -19,6 +19,24 @@
},
"homepage": "https://github.com/bamlab/react-native-hide-with-keyboard#readme",
"devDependencies": {
"@types/react": "*"
"@types/react": "*",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"semantic-release": "^15.9.8",
"travis-deploy-once": "^5.0.2",
"validate-commit-msg": "^2.14.0"
},
"scripts": {
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"test": "echo 'No tests'"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}

0 comments on commit b9520f6

Please sign in to comment.