mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
19 lines
525 B
JavaScript
19 lines
525 B
JavaScript
/* eslint-disable no-path-concat */
|
|
|
|
'use strict';
|
|
|
|
var path = require('path');
|
|
process.env.NODE_PATH = (process.env.NODE_PATH || '').split(path.delimiter)
|
|
.filter((p) => p).concat(__dirname + '/node_modules').join(path.delimiter);
|
|
require('module')._initPaths(); // eslint-disable-line no-underscore-dangle
|
|
|
|
require('gulp');
|
|
require('gulp-concat');
|
|
require('gulp/bin/gulp.js');
|
|
require('fs');
|
|
require('gulp-gzip');
|
|
require('gulp-flatmap');
|
|
require('path');
|
|
require('gulp-htmlmin');
|
|
require('gulp-uglify');
|
|
require('pump'); |