Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@googlemail.com>2017-07-23 17:44:40 +0300
committerRaimund Schlüßler <raimund.schluessler@googlemail.com>2017-07-23 17:44:40 +0300
commit5ab9b2ebf3aeddc97bdb96554a55c31379dd7cc2 (patch)
tree6bfaf3376434bcbc872921d3b00063ec790fe762 /js
parent0dd928b9046c8af506977427b417990adfe3fd3e (diff)
Fix build
Diffstat (limited to 'js')
-rw-r--r--js/Gruntfile.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/Gruntfile.js b/js/Gruntfile.js
index 4e921456..f0d34e0a 100644
--- a/js/Gruntfile.js
+++ b/js/Gruntfile.js
@@ -26,7 +26,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-wrap');
- grunt.loadNpmTasks('grunt-karma');
+ // grunt.loadNpmTasks('grunt-karma');
grunt.initConfig({
meta: {
@@ -93,8 +93,8 @@ module.exports = function(grunt) {
}
}
});
- grunt.registerTask('ci', ['karma:continuous']);
- grunt.registerTask('js', ['concat', 'wrap']);
+ // grunt.registerTask('ci', ['karma:continuous']);
+ grunt.registerTask('js', ['concat']);
grunt.registerTask('default', 'js');
- grunt.registerTask('build', ['concat', 'wrap']);
+ grunt.registerTask('build', ['concat']);
};