Skip to content
This repository was archived by the owner on Mar 20, 2018. It is now read-only.

Commit f27aeaf

Browse files
committed
Update dependencies and tooling
1 parent 5b8109b commit f27aeaf

File tree

5 files changed

+111
-94
lines changed

5 files changed

+111
-94
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
9+
[{*.js, *.json}]
10+
indent_style = space
11+
indent_size = 4
12+
13+
[*.css]
14+
indent_style = tab
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

Gruntfile.js

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
module.exports = function(grunt) {
22

3-
grunt.initConfig({
4-
pkg: grunt.file.readJSON('slideshow.jquery.json'),
5-
uglify: {
6-
options: {
7-
banner: [
8-
'/*!',
9-
' * @name <%= pkg.title %>',
10-
' * @author <%= pkg.author.name %> <<%= pkg.homepage %>>',
11-
' * @modified <%= grunt.template.today("dddd, mmmm dS, yyyy, HH:MM:ss") %>',
12-
' * @version <%= pkg.version %>',
13-
' */'].join('\n')
14-
},
15-
my_target: {
16-
files: {
17-
'dist/slideshow.js': ['<banner>', 'src/slideshow.js']
3+
grunt.initConfig({
4+
pkg: grunt.file.readJSON('slideshow.jquery.json'),
5+
uglify: {
6+
options: {
7+
banner: [
8+
'/*!',
9+
' * @name <%= pkg.title %>',
10+
' * @author <%= pkg.author.name %> <<%= pkg.homepage %>>',
11+
' * @modified <%= grunt.template.today("dddd, mmmm dS, yyyy, HH:MM:ss") %>',
12+
' * @version <%= pkg.version %>',
13+
' */'].join('\n')
14+
},
15+
my_target: {
16+
files: {
17+
'dist/slideshow.js': ['<banner>', 'src/slideshow.js']
18+
}
19+
}
20+
},
21+
jshint: {
22+
all: ['Gruntfile.js', 'src/*.js'],
23+
options: {
24+
trailing: true,
25+
browser: true,
26+
globals: {
27+
jQuery: true,
28+
define: false,
29+
module: true
30+
}
31+
}
1832
}
19-
}
20-
},
21-
jshint: {
22-
all: ['Gruntfile.js', 'src/*.js'],
23-
options: {
24-
trailing: true,
25-
browser: true,
26-
globals: {
27-
jQuery: true,
28-
define: false,
29-
module: true
30-
}
31-
}
32-
}
33-
});
33+
});
3434

35-
grunt.loadNpmTasks('grunt-contrib-jshint');
36-
grunt.loadNpmTasks('grunt-contrib-uglify');
35+
grunt.loadNpmTasks('grunt-contrib-jshint');
36+
grunt.loadNpmTasks('grunt-contrib-uglify');
3737

38-
grunt.registerTask('default', ['jshint', 'uglify']);
38+
grunt.registerTask('default', ['jshint', 'uglify']);
3939

40-
};
40+
};

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ https://github.com/i-like-robots/jQuery-Slideshow/issues
2323

2424
## Versioning
2525

26-
The current version is `1.6.3`. Releases will be numbered in following format:
26+
The current version is `1.7.0-dev`. Releases will be numbered in following format:
2727

2828
`<major>.<minor>.<patch>`
2929

@@ -37,4 +37,4 @@ This jQuery Slideshow was written by [Matt Hinchliffe][3].
3737

3838
[1]: http://github.com/i-like-robots/jQuery-Slideshow
3939
[2]: http://creativecommons.org/licenses/by-sa/3.0/
40-
[3]: http://www.maketea.co.uk
40+
[3]: http://www.maketea.co.uk

package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "slideshow",
3-
"version": "1.6.3",
4-
"title": "jQuery Slideshow",
5-
"description": "jQuery Slideshow is a performant and developer friendly image slideshow and content carousel plugin with support for touch gestures. 2KB when gzipped.",
6-
"keywords": [
7-
"slideshow",
8-
"carousel",
9-
"slider",
10-
"content",
11-
"image"
12-
],
13-
"author": {
14-
"name": "Matt Hinchliffe",
15-
"email": "matt+jquery@maketea.co.uk",
16-
"url": "http://maketea.co.uk"
17-
},
18-
"licenses": [
19-
{
20-
"type": "CC BY-SA 3.0",
21-
"url": "http://creativecommons.org/licenses/by-sa/3.0/"
2+
"name": "slideshow",
3+
"version": "1.7.0-dev",
4+
"title": "jQuery Slideshow",
5+
"description": "jQuery Slideshow is a performant and developer friendly image slideshow and content carousel plugin with support for touch gestures. 2KB when gzipped.",
6+
"keywords": [
7+
"slideshow",
8+
"carousel",
9+
"slider",
10+
"content",
11+
"image"
12+
],
13+
"author": {
14+
"name": "Matt Hinchliffe",
15+
"email": "matt+jquery@maketea.co.uk",
16+
"url": "http://maketea.co.uk"
17+
},
18+
"licenses": [
19+
{
20+
"type": "CC BY-SA 3.0",
21+
"url": "http://creativecommons.org/licenses/by-sa/3.0/"
22+
}
23+
],
24+
"bugs": "https://github.com/i-like-robots/jQuery-Slideshow/issues",
25+
"homepage": "http://i-like-robots.github.com/jQuery-Slideshow/",
26+
"demo": "http://i-like-robots.github.com/jQuery-Slideshow/",
27+
"devDependencies": {
28+
"grunt": "0.4.x",
29+
"grunt-contrib-jshint": "0.9.x",
30+
"grunt-contrib-uglify": "0.4.x"
2231
}
23-
],
24-
"bugs": "https://github.com/i-like-robots/jQuery-Slideshow/issues",
25-
"homepage": "http://i-like-robots.github.com/jQuery-Slideshow/",
26-
"demo": "http://i-like-robots.github.com/jQuery-Slideshow/",
27-
"devDependencies": {
28-
"grunt": "0.4.x",
29-
"grunt-contrib-jshint": "0.1.x",
30-
"grunt-contrib-uglify": "0.2.x"
31-
}
32-
}
32+
}

slideshow.jquery.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"name": "slideshow",
3-
"version": "1.6.3",
4-
"title": "jQuery Slideshow",
5-
"description": "jQuery Slideshow is a performant and developer friendly image slideshow and content carousel plugin with support for touch gestures. 2KB when gzipped.",
6-
"keywords": [
7-
"slideshow",
8-
"carousel",
9-
"slider",
10-
"content",
11-
"image"
12-
],
13-
"author": {
14-
"name": "Matt Hinchliffe",
15-
"email": "matt+jquery@maketea.co.uk",
16-
"url": "http://maketea.co.uk"
17-
},
18-
"licenses": [
19-
{
20-
"type": "CC BY-SA 3.0",
21-
"url": "http://creativecommons.org/licenses/by-sa/3.0/"
2+
"name": "slideshow",
3+
"version": "1.7.0-dev",
4+
"title": "jQuery Slideshow",
5+
"description": "jQuery Slideshow is a performant and developer friendly image slideshow and content carousel plugin with support for touch gestures. 2KB when gzipped.",
6+
"keywords": [
7+
"slideshow",
8+
"carousel",
9+
"slider",
10+
"content",
11+
"image"
12+
],
13+
"author": {
14+
"name": "Matt Hinchliffe",
15+
"email": "matt+jquery@maketea.co.uk",
16+
"url": "http://maketea.co.uk"
17+
},
18+
"licenses": [
19+
{
20+
"type": "CC BY-SA 3.0",
21+
"url": "http://creativecommons.org/licenses/by-sa/3.0/"
22+
}
23+
],
24+
"bugs": "https://github.com/i-like-robots/jQuery-Slideshow/issues",
25+
"homepage": "http://i-like-robots.github.com/jQuery-Slideshow/",
26+
"demo": "http://i-like-robots.github.com/jQuery-Slideshow/",
27+
"dependencies": {
28+
"jquery": ">=1.7"
2229
}
23-
],
24-
"bugs": "https://github.com/i-like-robots/jQuery-Slideshow/issues",
25-
"homepage": "http://i-like-robots.github.com/jQuery-Slideshow/",
26-
"demo": "http://i-like-robots.github.com/jQuery-Slideshow/",
27-
"dependencies": {
28-
"jquery": ">=1.7"
29-
}
30-
}
30+
}

0 commit comments

Comments
 (0)