UNPKG

@pegakit/pegakit

Version:

The living styleguide, pattern library, UI ToolKit, and front-end build tools that power Pega's digital web properties.

24 lines (17 loc) 503 B
const gulp = require('gulp-help')(require('gulp')); const _ = require('lodash'); let localConfig = {}, webpackConfig = {}; // Attempt to load an optional local configuration file. try { localConfig = require('./local.gulp-config'); } catch (e) {} console.log(localConfig); // Attempt to load an optional local configuration file. try { webpackConfig = require('./local.webpack.config.js'); } catch (e) {} // Load all gulp tasks. require('./build-tools')(gulp, localConfig, webpackConfig);