PDF rausgenommen
This commit is contained in:
49
msd2/tracking/piwik/libs/bower_components/jScrollPane/build/Gruntfile.js
vendored
Normal file
49
msd2/tracking/piwik/libs/bower_components/jScrollPane/build/Gruntfile.js
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
/*
|
||||
* 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']);
|
||||
|
||||
};
|
30
msd2/tracking/piwik/libs/bower_components/jScrollPane/build/package.json
vendored
Normal file
30
msd2/tracking/piwik/libs/bower_components/jScrollPane/build/package.json
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "jScrollPane-build",
|
||||
"description": "Keep track of what you spend",
|
||||
"version": "0.1.0",
|
||||
"homepage": "http://jscrollpane.kelvinluck.com",
|
||||
"author": {
|
||||
"name": "Kelvin Luck",
|
||||
"email": "git+jsp@kelvinluck.com"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://github.com/haggerstonjs/blob/master/LICENSE-MIT"
|
||||
}
|
||||
],
|
||||
"main": "Gruntfile.js",
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-contrib-uglify": "~0.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt-contrib-connect": "~0.2.0",
|
||||
"grunt-contrib-watch": "~0.2.0"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"keywords": []
|
||||
}
|
Reference in New Issue
Block a user