Move release script to Grunt (fixes #31)
This commit is contained in:
parent
22cffe4a90
commit
cd97433a4e
3 changed files with 12 additions and 3 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -45,6 +45,14 @@ module.exports = function (grunt) {
|
||||||
classes: {
|
classes: {
|
||||||
dir: 'tests/'
|
dir: 'tests/'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
compress: {
|
||||||
|
release: {
|
||||||
|
options: {
|
||||||
|
archive: 'alltube-release.zip'
|
||||||
|
},
|
||||||
|
src: ['*.php', '!config.php', 'dist/**', 'fonts/**', '.htaccess', 'img/**', 'js/**', 'LICENSE', 'README.md', 'robots.txt', 'sitemap.xml', 'templates/**', 'templates_c/', 'vendor/**']
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -54,8 +62,10 @@ module.exports = function (grunt) {
|
||||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
grunt.loadNpmTasks('grunt-phpcs');
|
grunt.loadNpmTasks('grunt-phpcs');
|
||||||
grunt.loadNpmTasks('grunt-phpunit');
|
grunt.loadNpmTasks('grunt-phpunit');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-compress');
|
||||||
|
|
||||||
grunt.registerTask('default', ['uglify', 'cssmin']);
|
grunt.registerTask('default', ['uglify', 'cssmin']);
|
||||||
grunt.registerTask('lint', ['phpcs']);
|
grunt.registerTask('lint', ['phpcs']);
|
||||||
grunt.registerTask('test', ['phpunit']);
|
grunt.registerTask('test', ['phpunit']);
|
||||||
|
grunt.registerTask('release', ['compress']);
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"grunt-contrib-uglify": "~0.6.0",
|
"grunt-contrib-uglify": "~0.6.0",
|
||||||
"grunt-contrib-watch": "~0.6.1",
|
"grunt-contrib-watch": "~0.6.1",
|
||||||
"grunt-phpcs": "~0.4.0",
|
"grunt-phpcs": "~0.4.0",
|
||||||
"grunt-phpunit": "~0.3.6"
|
"grunt-phpunit": "~0.3.6",
|
||||||
|
"grunt-contrib-compress": "~0.13.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "~0.10.29"
|
"node": "~0.10.29"
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
rm alltube-release.zip
|
|
||||||
zip -r alltube-release.zip *.php dist/ fonts/ .htaccess img/ js/ LICENSE README.md robots.txt sitemap.xml templates/ templates_c/ vendor/ youtube-dl -x config.php templates_c/*
|
|
Loading…
Reference in a new issue