Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
fix(package): fix version number in package files (#177)
Browse files Browse the repository at this point in the history
the version number in the packaged files was no longer correct after semantic-release

Fixes #173
  • Loading branch information
Seth Yates committed Apr 27, 2016
1 parent f94b6f2 commit 4f278fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -28,7 +28,7 @@
"main": "dist/postscribe.js",
"browser": "dist/postscribe.js",
"dependencies": {
"prescribe": ">=1.0.7"
"prescribe": ">=1.0.8"
},
"devDependencies": {
"babel-core": "6.7.7",
Expand Down Expand Up @@ -109,7 +109,7 @@
"clean": "gulp clean",
"doc": "gulp doc",
"lint": "gulp lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release": "semantic-release pre && gulp build && npm publish && semantic-release post",
"start": "gulp serve",
"tdd": "gulp tdd",
"tdd:coverage": "gulp tdd:coverage",
Expand Down

0 comments on commit 4f278fc

Please sign in to comment.