From 20258e80ee738a7274f93fae03f10e27f0af98cc Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Fri, 18 Mar 2016 16:18:48 -0500 Subject: [PATCH] stable use of gulp-pipeline through unbundled cjs instead of direct at source. may switch back but this is verified working externally --- gulp-docs.js | 2 +- gulpfile.babel.js | 2 +- package.json | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gulp-docs.js b/gulp-docs.js index 432aebdc..725772e0 100644 --- a/gulp-docs.js +++ b/gulp-docs.js @@ -1,4 +1,4 @@ -import {Preset, Clean, Copy, Jekyll, CssNano, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, Aggregate, Uglify, parallel, series} from 'gulp-pipeline/src/index' +import {Preset, Clean, Copy, Jekyll, CssNano, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, Aggregate, Uglify, parallel, series} from 'gulp-pipeline' const referenceDocNotice = `$1\n diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 90d1ead3..a9fa0b43 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -1,4 +1,4 @@ -import {Preset, Clean, Copy, Jekyll, CssNano, Prepublish, PublishBuild, PublishGhPages, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, Aggregate, Uglify, series, parallel} from 'gulp-pipeline/src/index' +import {Preset, Clean, Copy, Jekyll, CssNano, Prepublish, PublishBuild, PublishGhPages, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, Aggregate, Uglify, series, parallel} from 'gulp-pipeline' import gulp from 'gulp' import findup from 'findup-sync' import pkg from './package.json' diff --git a/package.json b/package.json index 8d4972b1..923e7f31 100644 --- a/package.json +++ b/package.json @@ -38,6 +38,7 @@ "tether": "^1.2.0" }, "devDependencies": { + "babel-core": "^6.7.2", "babel-eslint": "^5.0.0", "babel-polyfill": "^6.6", "babel-preset-es2015": "^6.6.0",