1er commit

WP theme
This commit is contained in:
2016-10-20 19:45:17 +02:00
commit 729a7572af
62 changed files with 13838 additions and 0 deletions

28
_/Swipe/Gruntfile.js Executable file
View File

@@ -0,0 +1,28 @@
/*global module */
module.exports = function( grunt ) {
'use strict';
grunt.initConfig({
uglify: {
options: {
mangle: {
except: ['Swipe']
}
},
dist: {
files: {
'build/swipe.min.js': 'swipe.js'
}
}
}
});
// build
grunt.loadNpmTasks('grunt-contrib');
grunt.registerTask('build', 'uglify');
grunt.registerTask('default', 'build');
};