12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Created by robin on 11/10/15.
- */
-
- module.exports = function(grunt) {
-
- grunt.loadNpmTasks('grunt-contrib-copy');
-
- var path = require('path');
-
- grunt.initConfig({
- globals: {
- releasePath: 'build/release/luticate',
- appFolder: 'luticate',
- staticFiles: [
- '**'
- ]
- },
- copy: {
- release: {
- files: [
- {
- expand: true,
- cwd:'<%= globals.appFolder %>/',
- src: ['<%= globals.staticFiles %>'],
- dest: '<%= globals.releasePath %>'
- }
- ]
- }
- }
- });
- grunt.registerTask('default', [
- 'copy:release'
- ]);
-
-
- };
|