mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
Update npm and add the jquery mask
This commit is contained in:
parent
d5fab8dacf
commit
bd97e8aa6c
2799 changed files with 332053 additions and 2864 deletions
43
node_modules/jquery-mask-plugin/Gruntfile.js
generated
vendored
Normal file
43
node_modules/jquery-mask-plugin/Gruntfile.js
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
module.exports = function(grunt) {
|
||||
require('load-grunt-tasks')(grunt);
|
||||
require('time-grunt')(grunt);
|
||||
|
||||
grunt.initConfig({
|
||||
|
||||
jshint: {
|
||||
options: {
|
||||
jshintrc: '.jshintrc',
|
||||
reporter: require('jshint-stylish')
|
||||
},
|
||||
all: ['src/{,*/}*.js']
|
||||
},
|
||||
connect: {
|
||||
server: {
|
||||
options: {
|
||||
port: 9001,
|
||||
base: './'
|
||||
}
|
||||
}
|
||||
},
|
||||
qunit: {
|
||||
all: {
|
||||
options: {
|
||||
urls: [
|
||||
'http://localhost:9001/test/test-for-jquery-1.11.1.html',
|
||||
'http://localhost:9001/test/test-for-jquery-1.7.2.html',
|
||||
'http://localhost:9001/test/test-for-jquery-1.8.3.html',
|
||||
'http://localhost:9001/test/test-for-jquery-1.9.1.html',
|
||||
'http://localhost:9001/test/test-for-jquery-2.1.1.html',
|
||||
'http://localhost:9001/test/test-for-jquery-3.0.0.html',
|
||||
'http://localhost:9001/test/test-for-zepto.html'
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// A convenient task alias.
|
||||
grunt.registerTask('test', ['jshint', 'connect', 'qunit']);
|
||||
grunt.registerTask('default', ['test']);
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue