Skip to content

Commit

Permalink
FIX: adhere to new PBi config for tiles.
Browse files Browse the repository at this point in the history
Finally bumped to v1.0
  • Loading branch information
taarskog committed Feb 16, 2018
1 parent ea309dc commit 5c6ca27
Show file tree
Hide file tree
Showing 10 changed files with 10,397 additions and 33 deletions.
9 changes: 5 additions & 4 deletions gulpfile.js
Expand Up @@ -20,7 +20,8 @@ var buffer = require('vinyl-buffer');
var es = require('event-stream');
var browsersync = require('browser-sync');
var header = require('gulp-header');
var gutil = require("gulp-util");
var log = require("fancy-log");
var colors = require('ansi-colors');
var del = require('del');

var argv = require("minimist")(process.argv.slice(2), {
Expand Down Expand Up @@ -146,7 +147,7 @@ var options = {
},

babelify: {
presets: ['es2015'],
presets: ['env'],
extensions: ['.ts']
},

Expand Down Expand Up @@ -284,8 +285,8 @@ gulp.task("build:pages", function () {

function errorHandler(title) {
return function (error) {
gutil.log([
gutil.colors.bold.red("Error in " + (title || error.plugin)),
log([
colors.bold.red("Error in " + (title || error.plugin)),
error.message,
''
].join('\n'));
Expand Down

0 comments on commit 5c6ca27

Please sign in to comment.