Compare commits
No commits in common. "96dec97cd4d9d3897d80a62ace4fa1cb6ce660c7" and "070512eae294ec72e34616fb4a61334422758fde" have entirely different histories.
96dec97cd4
...
070512eae2
23
Gruntfile.js
23
Gruntfile.js
|
@ -1,23 +0,0 @@
|
||||||
module.exports = function(grunt){
|
|
||||||
|
|
||||||
// Configuration
|
|
||||||
grunt.initConfig({
|
|
||||||
// pass in options to plugin, references to file, etc.
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// Load plugins
|
|
||||||
// grunt.loadNpmTasks('')
|
|
||||||
|
|
||||||
// Register tasks
|
|
||||||
grunt.registerTask('run', function(){
|
|
||||||
// task is a function with name is 'run'
|
|
||||||
console.log('I am running');
|
|
||||||
});
|
|
||||||
|
|
||||||
grunt.registerTask('sleep', function(){
|
|
||||||
console.log('I am sleep');
|
|
||||||
});
|
|
||||||
|
|
||||||
grunt.registerTask('all', ['sleep', 'run'])
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
19
package.json
19
package.json
|
@ -1,19 +0,0 @@
|
||||||
{
|
|
||||||
"name": "grunt-playlist",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "This pratice repo is built following Youtube Tutorial series [Grunt JS Tutorial](https://www.youtube.com/watch?v=KAD-l__vek4&list=PL4cUxeGkcC9j85fkVyCzCMJDfteLtrl_y)",
|
|
||||||
"main": "app.js",
|
|
||||||
"dependencies": {},
|
|
||||||
"devDependencies": {
|
|
||||||
"grunt": "^1.3.0"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "ssh://git@lj918plus.dsmynas.com:2223/Jason/grunt-playlist.git"
|
|
||||||
},
|
|
||||||
"author": "",
|
|
||||||
"license": "ISC"
|
|
||||||
}
|
|
Loading…
Reference in New Issue