This commit is contained in:
Andreas Schwarz 2016-03-15 07:08:07 -07:00
parent de0627bd88
commit d19e891bca
2 changed files with 26 additions and 27 deletions

View file

@ -465,32 +465,6 @@ gulp.task('build-docs', function(callback) {
); );
}); });
/**
* Common Commands
*/
// clean
gulp.task('clean', function() {
return del(
[output + '**/*']
);
});
// Default Task
gulp.task('default', function(callback) {
runSequence(
'clean',
'build-system',
'build-install',
'build-uninstall',
'build-sdcard',
//'build-docs',
callback
);
});
/** /**
* These build jobs are for distribution * These build jobs are for distribution
@ -606,3 +580,28 @@ gulp.task('dist-major', function(callback) {
callback callback
); );
}); });
/**
* Common Commands
*/
// clean
gulp.task('clean', function() {
return del(
[output + '**/*']
);
});
// Default Task
gulp.task('default', function(callback) {
runSequence(
'clean',
'build-system',
'build-install',
'build-uninstall',
'build-sdcard',
//'build-docs',
callback
);
});

View file

@ -1,7 +1,7 @@
{ {
"name": "casdk", "name": "casdk",
"description": "Write and deploy applications for the Mazda Infotainment System", "description": "Write and deploy applications for the Mazda Infotainment System",
"version": "0.0.2", "version": "0.0.4",
"homepage": "http://flyandi.github.io/mazda-custom-application-sdk/", "homepage": "http://flyandi.github.io/mazda-custom-application-sdk/",
"author": "Andy (flyandi) <flyandi@yahoo.com>", "author": "Andy (flyandi) <flyandi@yahoo.com>",
"repository": { "repository": {