Skip to content

Commit 458e9fb

Browse files
committed
Bower, again.
1 parent 785c3c5 commit 458e9fb

15 files changed

+44
-33
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/distribute/* -diff

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/distribute
21
/node_modules
32
*.log
43
*.zip

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@
44
[submodule "submodules/libLink"]
55
path = submodules/libLink
66
url = https://github.com/leongersen/libLink
7-
[submodule "submodules/noUiSlider-dist"]
8-
path = submodules/noUiSlider-dist
9-
url = https://github.com/leongersen/noUiSlider-dist

Gruntfile.js

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,16 +108,6 @@ module.exports = function(grunt) {
108108
},
109109
files: releaseFiles
110110
}
111-
},
112-
copy: {
113-
all: {
114-
expand: true,
115-
cwd: 'distribute/',
116-
src: '**',
117-
dest: 'submodules/noUiSlider-dist/',
118-
flatten: true,
119-
filter: 'isFile'
120-
}
121111
}
122112
});
123113

@@ -139,10 +129,7 @@ module.exports = function(grunt) {
139129
// https://github.com/gruntjs/grunt-contrib-compress
140130
grunt.loadNpmTasks('grunt-contrib-compress');
141131

142-
// https://www.npmjs.org/package/grunt-contrib-copy
143-
grunt.loadNpmTasks('grunt-contrib-copy');
144-
145132
grunt.registerTask('default', ['concat', 'jshint']);
146133
grunt.registerTask('create', ['concat', 'jshint', 'uglify', 'cssmin']);
147-
grunt.registerTask('release', ['string-replace', 'compress', 'copy']);
134+
grunt.registerTask('release', ['string-replace', 'compress']);
148135
};

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,12 @@ An extensive documentation, including **examples**, **options** and **configurat
88

99
Bower
1010
-----
11-
Bower users can install all compiled and minified files easily using `bower install nouislider --save`.
12-
This will install [a separate repository](https://github.com/leongersen/noUiSlider-dist) which is only used for Bower.
13-
14-
You can read more about the absence of minified files for this repository in [this blog post](http://refreshless.com/blog/git-repository-commit-minified-bower/).
11+
Bower users can install all compiled and minified files easily using `bower install nouislider --save`. Supporting bower unfortunately means keeping all compiled and minified versions in the repository.
1512

1613
Changelog
1714
---------
18-
###7.0.5
19-
+ Moved Bower support.
15+
###7.0.4 ~ 7.0.6
16+
+ Bower support.
2017

2118
###7.0.3:
2219
+ Fixed an issue with Link on single-handle RTL sliders.

bower.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "nouislider",
3+
"description": "A lightweight, highly customizable range slider without bloat. Touch support on all modern devices and responsive design ready!",
4+
"keywords": [
5+
"jquery",
6+
"slider",
7+
"form",
8+
"range",
9+
"handles",
10+
"touch",
11+
"input",
12+
"slide"
13+
],
14+
"main": [
15+
"distribute/jquery.nouislider.all.min.js",
16+
"distribute/jquery.nouislider.min.css",
17+
"distribute/jquery.nouislider.pips.min.css"
18+
],
19+
"dependencies": {
20+
"jquery": ">= 1.7.0"
21+
},
22+
"ignore": [
23+
"**/.*",
24+
"**/*.json"
25+
],
26+
"license": "http://www.wtfpl.net/about/",
27+
"homepage": "http://refreshless.com/nouislider/",
28+
"author": {
29+
"name": "Léon Gersen"
30+
}
31+
}

distribute/jquery.nouislider.all.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! noUiSlider - 7.0.4 - 2014-09-11 17:57:47 */
1+
/*! noUiSlider - 7.0.6 - 2014-09-11 20:29:06 */
22

33
(function(){
44

distribute/jquery.nouislider.all.min.js

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

distribute/jquery.nouislider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! noUiSlider - 7.0.4 - 2014-09-11 17:57:47 */
1+
/*! noUiSlider - 7.0.6 - 2014-09-11 20:29:06 */
22

33
/*jslint browser: true */
44
/*jslint white: true */

distribute/jquery.nouislider.min.css

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

0 commit comments

Comments
 (0)