Skip to content

Commit 8c04125

Browse files
authored
Merge pull request #85 from pelias/cleanup
Cleanup
2 parents 6b7e475 + 4432fcf commit 8c04125

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ notifications:
55
node_js:
66
- 6
77
- 8
8+
- 10
89
matrix:
910
fast_finish: true
1011
script: npm run travis
@@ -13,4 +14,7 @@ before_install:
1314
before_script:
1415
- npm prune
1516
after_success:
16-
- npm run semantic-release
17+
- npx semantic-release
18+
branches:
19+
except:
20+
- /^v\d+\.\d+\.\d+$/

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,15 @@
33
"author": "mapzen",
44
"description": "Configuration settings for Pelias",
55
"homepage": "https://github.com/pelias/config",
6-
"version": "0.0.0-semantic-release",
6+
"version": "0.0.0-development",
77
"license": "MIT",
88
"main": "index.js",
99
"scripts": {
1010
"lint": "jshint .",
1111
"test": "npm run units",
12-
"travis": "npm run check-dependencies && npm test",
12+
"travis": "npm test",
1313
"units": "node test/run.js | tap-spec",
14-
"validate": "npm ls",
15-
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
16-
"check-dependencies": "node_modules/.bin/npm-check --production"
14+
"validate": "npm ls"
1715
},
1816
"repository": {
1917
"type": "git",
@@ -38,7 +36,6 @@
3836
},
3937
"devDependencies": {
4038
"jshint": "^2.9.4",
41-
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
4239
"precommit-hook": "^3.0.0",
4340
"semantic-release": "^15.0.0",
4441
"tap-spec": "^4.1.1",
@@ -47,7 +44,6 @@
4744
"pre-commit": [
4845
"lint",
4946
"validate",
50-
"test",
51-
"check-dependencies"
47+
"test"
5248
]
5349
}

0 commit comments

Comments
 (0)