Skip to content

Commit ebd6bc5

Browse files
author
Philipp Alferov
committed
Remove semantic-release package
1 parent ac8e16a commit ebd6bc5

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

.travis.yml

-11
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@ node_js:
99
- 'stable'
1010
- '0.12'
1111
- '0.10'
12-
before_install:
13-
- npm i -g npm@^2.0.0
14-
before_script:
15-
- npm prune
16-
- 'curl -Lo travis_after_all.py https://git.io/vLSON'
17-
script:
18-
- npm run test
19-
after_success:
20-
- python travis_after_all.py
21-
- export $(cat .to_export_back)
22-
- npm run semantic-release
2312
branches:
2413
except:
2514
- "/^v\\d+\\.\\d+\\.\\d+$/"

package.json

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
{
22
"name": "array-to-tree",
3-
"version": "0.0.0-semantically-released",
3+
"version": "2.1.6",
44
"description": "Convert a plain array of nodes (with pointers to parent nodes) to a tree",
55
"main": "index.js",
66
"scripts": {
7+
"release": "npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -m \":octocat: Bump to $(cat package.json | jq -r .version)\" && git push && git push --tags && npm publish",
78
"test": "mocha --reporter nyan",
8-
"tdd": "npm test -- --watch",
9-
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "https://github.com/alferov/array-to-tree.git"
9+
"tdd": "npm test -- --watch"
1410
},
11+
"repository": "alferov/array-to-tree",
1512
"keywords": [
1613
"array",
1714
"list",
@@ -24,8 +21,7 @@
2421
"devDependencies": {
2522
"chai": "^3.2.0",
2623
"eslint": "^1.4.1",
27-
"mocha": "^2.3.0",
28-
"semantic-release": "^4.3.5"
24+
"mocha": "^2.3.0"
2925
},
3026
"author": {
3127
"name": "Philipp Alferov",

0 commit comments

Comments
 (0)