Skip to content
This repository has been archived by the owner on Aug 21, 2018. It is now read-only.

Commit

Permalink
reduced the size more
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Mar 28, 2017
1 parent 7287267 commit c338e9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ var autoprefixer = require('gulp-autoprefixer')
var browserify = require('browserify')
var buffer = require('vinyl-buffer')
var cssnano = require('gulp-cssnano')
var gulp = require('gulp')
var gulpConcat = require('gulp-concat')
var less = require('gulp-less')
var notify = require('gulp-notify')
var plumber = require('gulp-plumber')
var rename = require('gulp-rename')
var source = require('vinyl-source-stream')
var sourcemaps = require('gulp-sourcemaps')
var uglify = require('gulp-uglify')
var NwBuilder = require('nw-builder');
var uglify = require('gulp-uglify')
var gulp = require('gulp')
var NwBuilder = require('nw-builder')

var src = './src/'
var app = './app/'
Expand Down Expand Up @@ -122,7 +122,7 @@ gulp.task('copy', function() {

gulp.task('buildApp', function() {
var nw = new NwBuilder({
files: ['./**/**', '!./src/**/**', '!./build/**/**'], // use the glob format
files: ['./**/**', '!./src/**/**', '!./build/**/**', '!./cache/**/**'], // use the glob format
platforms: ['osx64', 'win64', 'linux64'],
version: '0.21.3',
buildDir: './build',
Expand Down

0 comments on commit c338e9f

Please sign in to comment.