Skip to content

Commit

Permalink
fix: use es6 in gulpfile with babel
Browse files Browse the repository at this point in the history
  • Loading branch information
patkub committed Oct 10, 2019
1 parent 03c98e2 commit 119cd7c
Show file tree
Hide file tree
Showing 4 changed files with 3,695 additions and 2,236 deletions.
12 changes: 6 additions & 6 deletions gulpfile.js → gulpfile.babel.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const path = require('path')
const { src, dest, series } = require('gulp')
const rollup = require('gulp-rollup')
const babel = require('gulp-babel')
const header = require('gulp-header')
const Server = require('karma').Server
import { src, dest, series } from 'gulp'
import rollup from 'gulp-rollup'
import babel from 'gulp-babel'
import header from 'gulp-header'
import path from 'path'
import { Server } from 'karma'

const headerTxt =
`/**
Expand Down
Loading

0 comments on commit 119cd7c

Please sign in to comment.