Skip to content

Commit

Permalink
Remove post-install script
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Hwang committed May 19, 2015
1 parent aa44a3b commit f0e351f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.0.5
- Remove `bower install` post-install script

## v1.0.4
- Use correct `require` name for `drop`

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether-tooltip",
"version": "1.0.4",
"version": "1.0.5",
"homepage": "https://github.hubspot.com/tooltip",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltip.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! tether-tooltip 1.0.4 */
/*! tether-tooltip 1.0.5 */

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ gulp.task('clean', function() {


// Javascript
gulp.task('js', ['clean'], function() {
gulp.task('js', function() {
gulp.src('./src/js/**/*.js')
.pipe(babel())
.pipe(umd(umdOptions))
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether-tooltip",
"version": "1.0.4",
"version": "1.0.5",
"description": "CSS tooltips built on Tether",
"authors": [
"Adam Schwartz <adam.flynn.schwartz@gmail.com>",
Expand All @@ -10,7 +10,6 @@
"Nicholas Hwang <nick.joosung.hwang@gmail.com>"
],
"scripts": {
"install": "bower install",
"build": "gulp build"
},
"license": "MIT",
Expand All @@ -19,19 +18,19 @@
"bower": "^1.4.1",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.2.0",
"gulp-autoprefixer": "^2.3.0",
"gulp-babel": "^5.1.0",
"gulp-bump": "^0.3.0",
"gulp-filter": "^2.0.2",
"gulp-header": "^1.2.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.0",
"gulp-sass": "^2.0.1",
"gulp-tag-version": "^1.2.1",
"gulp-uglify": "^1.2.0",
"gulp-wrap-umd": "^0.2.1"
},
"dependencies": {
"tether": "^0.7.2",
"tether-drop": "^1.0.4"
"tether-drop": "^1.0.5"
}
}

0 comments on commit f0e351f

Please sign in to comment.