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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/jScrollPane/build/Gruntfile.js')
-rw-r--r--libs/bower_components/jScrollPane/build/Gruntfile.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/libs/bower_components/jScrollPane/build/Gruntfile.js b/libs/bower_components/jScrollPane/build/Gruntfile.js
deleted file mode 100644
index c48aba2f70..0000000000
--- a/libs/bower_components/jScrollPane/build/Gruntfile.js
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * jScrollPane build script
- * http://jscrollpane.kelvinluck.com/
- *
- * Copyright (c) 2013 Kelvin Luck
- * Licensed under the MIT license.
- */
-
-'use strict';
-
-module.exports = function(grunt) {
-
- // Project configuration.
- grunt.initConfig({
-
- uglify: {
- jsp: {
- files: {
- '../script/jquery.jscrollpane.min.js': '../script/jquery.jscrollpane.js'
- },
- options: {
- preserveComments: 'some'
- }
- }
- },
- watch: {
- content: {
- files: ['../script/jquery.jscrollpane.js'],
- tasks: 'uglify'
- }
- },
- connect: {
- site: {
- options: {
- base: '../'
- }
- }
- }
-
- });
-
- grunt.loadNpmTasks('grunt-contrib-connect');
- grunt.loadNpmTasks('grunt-contrib-watch');
- grunt.loadNpmTasks('grunt-contrib-uglify');
-
- grunt.registerTask('default', ['uglify']);
- grunt.registerTask('serve', ['uglify', 'connect', 'watch']);
-
-};