@pegakit/pegakit
Version:
The living styleguide, pattern library, UI ToolKit, and front-end build tools that power Pega's digital web properties.
12 lines (10 loc) • 293 B
JavaScript
const gulp = require('gulp-help')(require('gulp'));
const _ = require('lodash');
let localConfig = {};
// Attempt to load an optional local configuration file.
try {
localConfig = require('./local.gulp-config');
}
catch (e) {}
// Load all gulp tasks.
require('./index')(gulp, localConfig);