Skip to content

Commit ce19385

Browse files
committed
Update version for plugins.jquery.com
1 parent a620f73 commit ce19385

File tree

5 files changed

+13
-18
lines changed

5 files changed

+13
-18
lines changed

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"jquery.smooth-scroll","title":"Smooth Scroll","description":"Easy implementation of smooth scrolling for same-page links","version":"1.4.7","homepage":"","author":{"name":"Karl Swedberg","email":"kswedberg@gmail.com","url":"http://www.learningjquery.com/"},"repository":{"type":"git","url":"https://github.com/kswedberg/jquery-smooth-scroll"},"bugs":{"url":"https://github.com/kswedberg/jquery-smooth-scroll/issues"},"licenses":[{"type":"MIT","url":"/blob/master/LICENSE-MIT"},{"type":"GPL","url":"/blob/master/LICENSE-GPL"}],"dependencies":{"jquery":"~1.3"},"keywords":[]}
1+
{"name":"smooth-scroll","title":"Smooth Scroll","description":"Easy implementation of smooth scrolling for same-page links","version":"1.4.8","homepage":"","author":{"name":"Karl Swedberg","email":"kswedberg@gmail.com","url":"http://www.learningjquery.com/"},"repository":{"type":"git","url":"https://github.com/kswedberg/jquery-smooth-scroll"},"bugs":{"url":"https://github.com/kswedberg/jquery-smooth-scroll/issues"},"licenses":[{"type":"MIT","url":"/blob/master/LICENSE-MIT"}],"dependencies":{"jquery":"~1.3"},"keywords":["scroll","animation"]}

grunt.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ module.exports = function(grunt) {
1515
},
1616
build: {
1717
built: {
18-
src: ['<banner:meta.banner>', '<file_strip_banner:src/<%= pkg.name %>.js>'],
19-
dest: './<%= pkg.name %>.js'
18+
src: ['<banner:meta.banner>', '<file_strip_banner:src/jquery.<%= pkg.name %>.js>'],
19+
dest: './jquery.<%= pkg.name %>.js'
2020
}
2121
},
2222
min: {
2323
dist: {
2424
src: ['<banner:meta.banner>', '<config:build.built.dest>'],
25-
dest: './<%= pkg.name %>.min.js'
25+
dest: './jquery.<%= pkg.name %>.min.js'
2626
}
2727
},
2828
lint: {
@@ -69,7 +69,6 @@ module.exports = function(grunt) {
6969
// compiled = '/* concatenated files:\n' + this.file.src.join(', ') + '\n*/\n\n' + compiled;
7070

7171
// update components.json
72-
7372
grunt.file.write( comp, JSON.stringify(pkg) );
7473

7574
// Embed Version

jquery.smooth-scroll.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! Smooth Scroll - v1.4.7 - 2012-10-29
2-
* Copyright (c) 2012 Karl Swedberg; Licensed MIT, GPL */
1+
/*! Smooth Scroll - v1.4.8 - 2013-01-21
2+
* Copyright (c) 2013 Karl Swedberg; Licensed MIT */
33

44
(function($) {
55

6-
var version = '1.4.7',
6+
var version = '1.4.8',
77
defaults = {
88
exclude: [],
99
excludeWithin:[],

jquery.smooth-scroll.min.js

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

smooth-scroll.jquery.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "jquery.smooth-scroll",
2+
"name": "smooth-scroll",
33
"title": "Smooth Scroll",
44
"description": "Easy implementation of smooth scrolling for same-page links",
5-
"version": "1.4.7",
5+
"version": "1.4.8",
66
"homepage": "",
77
"author": {
88
"name": "Karl Swedberg",
@@ -20,14 +20,10 @@
2020
{
2121
"type": "MIT",
2222
"url": "/blob/master/LICENSE-MIT"
23-
},
24-
{
25-
"type": "GPL",
26-
"url": "/blob/master/LICENSE-GPL"
2723
}
2824
],
2925
"dependencies": {
3026
"jquery": "~1.3"
3127
},
32-
"keywords": []
28+
"keywords": ["scroll", "animation"]
3329
}

0 commit comments

Comments
 (0)