Skip to content

Commit

Permalink
thanks @bereziuk for spotting this out, new version will be released …
Browse files Browse the repository at this point in the history
…to fix this, closes #163
  • Loading branch information
45kb committed May 31, 2016
1 parent 0566cd3 commit 4d0758a
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-tooltips",
"version": "1.1.1",
"version": "1.1.2",
"description": "Angular.js tooltips module.",
"authors": [
"Filippo Oretti <filippo.oretti@gmail.com",
Expand Down
8 changes: 6 additions & 2 deletions conf/tasks/minify.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@
'sourceRoot': '../lib'
}))
.pipe(rename(function onFileRename(path) {
if (path.extname !== '.map') {
path.basename += '.min';
}

path.basename += '.min';
return path;
}))
.pipe(gulp.dest(paths.output));
Expand All @@ -58,7 +60,9 @@
}))
.pipe(rename(function onFileRename(path) {

path.basename += '.min';
if (path.extname !== '.map') {
path.basename += '.min';
}
return path;
}))
.pipe(gulp.dest(paths.output));
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-tooltips.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/angular-tooltips.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/angular-tooltips.css.min.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/angular-tooltips.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*
* angular-tooltips
* 1.1.1
* 1.1.2
*
* Angular.js tooltips module.
* http://720kb.github.io/angular-tooltips
*
* MIT license
* Wed May 18 2016
* Tue May 31 2016
*/
/*global angular,window*/
(function withAngular(angular, window) {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions dist/angular-tooltips.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4d0758a

Please sign in to comment.