Refactor build script

This commit is contained in:
Buu Nguyen 2015-12-31 11:24:17 -08:00
parent cc65eae087
commit dcb86814b3
7 changed files with 8 additions and 7 deletions

BIN
dist/chrome.crx vendored

Binary file not shown.

BIN
dist/chrome.zip vendored Executable file → Normal file

Binary file not shown.

BIN
dist/firefox.xpi vendored

Binary file not shown.

BIN
dist/opera.nex vendored

Binary file not shown.

BIN
dist/safari.safariextz vendored

Binary file not shown.

View File

@ -1,10 +1,10 @@
const gulp = require('gulp')
const fs = require('fs')
const path = require('path')
const merge = require('event-stream').merge
const map = require('map-stream')
const spawn = require('child_process').spawn
const $ = require('gulp-load-plugins')()
import gulp from 'gulp'
import fs from 'fs'
import path from 'path'
import {merge} from 'event-stream'
import map from 'map-stream'
import {spawn} from 'child_process'
const $ = require('gulp-load-plugins')()
// Tasks
gulp.task('clean', () => {

View File

@ -26,6 +26,7 @@
"crx": "^0.4.4",
"event-stream": "*",
"firefox-profile": "~0.3.6",
"gulp": "^3.9.0",
"gulp-autoprefixer": "0.0.8",
"gulp-babel": "^6.1.0",
"gulp-clean": "^0.3.1",