Skip to content

Commit 4d0758a

Browse files
committed
thanks @bereziuk for spotting this out, new version will be released to fix this, closes #163
1 parent 0566cd3 commit 4d0758a

10 files changed

+17
-14
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-tooltips",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Angular.js tooltips module.",
55
"authors": [
66
"Filippo Oretti <[email protected]",

conf/tasks/minify.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@
3535
'sourceRoot': '../lib'
3636
}))
3737
.pipe(rename(function onFileRename(path) {
38+
if (path.extname !== '.map') {
39+
path.basename += '.min';
40+
}
3841

39-
path.basename += '.min';
4042
return path;
4143
}))
4244
.pipe(gulp.dest(paths.output));
@@ -58,7 +60,9 @@
5860
}))
5961
.pipe(rename(function onFileRename(path) {
6062

61-
path.basename += '.min';
63+
if (path.extname !== '.map') {
64+
path.basename += '.min';
65+
}
6266
return path;
6367
}))
6468
.pipe(gulp.dest(paths.output));

dist/angular-tooltips.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-tooltips.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-tooltips.css.min.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/angular-tooltips.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* angular-tooltips
3-
* 1.1.1
3+
* 1.1.2
44
*
55
* Angular.js tooltips module.
66
* http://720kb.github.io/angular-tooltips
77
*
88
* MIT license
9-
* Wed May 18 2016
9+
* Tue May 31 2016
1010
*/
1111
/*global angular,window*/
1212
(function withAngular(angular, window) {
File renamed without changes.

dist/angular-tooltips.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)