Skip to content

Commit 0fcd76b

Browse files
committed
Rewrite the build process in Grunt 1.x, use jQuery & QUnit from npm
Also, update the QUnit syntax to the new API not relying on globals. Closes #16
1 parent 044f909 commit 0fcd76b

19 files changed

+198
-11303
lines changed

.jshintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist/**
2+
node_modules/**

.jshintrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": ".jshintrc-common",
3+
4+
"node": true
5+
}

.jshintrc-common

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"boss": true,
3+
"curly": true,
4+
"eqeqeq": true,
5+
"eqnull": true,
6+
"expr": true,
7+
"immed": true,
8+
"noarg": true,
9+
"quotmark": "double",
10+
"undef": true,
11+
"unused": true
12+
}

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

Gruntfile.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
"use strict";
2+
3+
module.exports = function( grunt ) {
4+
5+
// Project configuration.
6+
grunt.initConfig( {
7+
pkg: grunt.file.readJSON( "package.json" ),
8+
replace: {
9+
all: {
10+
src: [ "src/<%= pkg.name %>.js" ],
11+
dest: "dist/",
12+
replacements: [
13+
{
14+
from: "@VERSION",
15+
to: "<%= pkg.version %>"
16+
},
17+
{
18+
from: "@YEAR",
19+
to: "<%= grunt.template.today('yyyy') %>"
20+
}
21+
]
22+
},
23+
},
24+
qunit: {
25+
all: [ "test/**/*.html" ]
26+
},
27+
jshint: {
28+
all: {
29+
src: [ "Gruntfile.js", "src/**/*.js", "test/**/*.js" ]
30+
},
31+
options: {
32+
jshintrc: true
33+
}
34+
},
35+
watch: {
36+
files: [ "<%= jshint.all.src %>" ],
37+
tasks: [ "lint", "qunit" ]
38+
},
39+
uglify: {
40+
all: {
41+
files: {
42+
"dist/<%= pkg.name %>.min.js": "dist/<%= pkg.name %>.js"
43+
}
44+
},
45+
options: {
46+
preserveComments: false,
47+
sourceMap: true,
48+
ASCIIOnly: true,
49+
sourceMapName:
50+
"dist/<%= pkg.name %>.min.map",
51+
report: "min",
52+
beautify: {
53+
"ascii_only": true
54+
},
55+
banner: "/*! jQuery requestAnimationFrame - <%= pkg.version %> - " +
56+
"<%= grunt.template.today('yyyy-mm-dd') %>\n" +
57+
"<%= pkg.homepage ? '* ' + pkg.homepage + '\\n' : '' %>" +
58+
" * Copyright (c) <%= grunt.template.today('yyyy') %> " +
59+
"<%= pkg.author.name %>; Licensed <%= pkg.license %> */"
60+
}
61+
}
62+
} );
63+
64+
// Load grunt tasks from NPM packages
65+
require( "load-grunt-tasks" )( grunt );
66+
67+
// Default task.
68+
grunt.registerTask( "default", [ "jshint", "qunit", "replace", "uglify" ] );
69+
70+
};

dist/jquery.requestAnimationFrame.js

+23-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
1-
/*! jQuery requestAnimationFrame - v0.1.3pre - 2016-02-03
2-
* https://github.com/gnarf37/jquery-requestAnimationFrame
3-
* Copyright (c) 2016 Corey Frang; Licensed MIT */
1+
/*!
2+
* jquery.requestAnimationFrame - 0.1.3-pre
3+
* https://github.com/gnarf37/jquery-requestAnimationFrame
4+
* Requires jQuery 1.8+
5+
*
6+
* Copyright (c) 2016 Corey Frang
7+
* Licensed under the MIT license.
8+
*/
9+
// UMD factory https://github.com/umdjs/umd/blob/master/jqueryPlugin.js
10+
( function ( factory ) {
11+
if ( typeof define === "function" && define.amd ) {
412

5-
// UMD factory https://github.com/umdjs/umd/blob/master/jqueryPlugin.js
6-
(function (factory) {
7-
if (typeof define === 'function' && define.amd) {
813
// AMD. Register as an anonymous module.
9-
define(['jquery'], factory);
14+
define( [ "jquery" ], factory );
1015
} else {
16+
1117
// Browser globals
12-
factory(jQuery);
18+
factory( jQuery );
1319
}
14-
}(function (jQuery) {
15-
16-
// requestAnimationFrame polyfill adapted from Erik Möller
17-
// fixes from Paul Irish and Tino Zijdel
18-
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
19-
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
20+
}( function ( jQuery ) {
2021

22+
if ( Number( jQuery.fn.jquery.split( "." )[ 0 ] ) >= 3 ) {
23+
if ( window.console && window.console.warn ) {
24+
window.console.warn( "The jquery.requestAnimationFrame plugin is not needed " +
25+
"in jQuery 3.0 or newer as they handle it natively." );
26+
}
27+
return;
28+
}
2129

2230
var animating;
2331

@@ -41,4 +49,4 @@ if ( window.requestAnimationFrame ) {
4149
};
4250
}
4351

44-
}));
52+
} ) );

dist/jquery.requestAnimationFrame.min.js

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.requestAnimationFrame.min.map

+1
Original file line numberDiff line numberDiff line change

grunt.js

-84
This file was deleted.

0 commit comments

Comments
 (0)