Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / test / test-79-npm / gulp / gulp.js
381 bytesRaw
1 | /* eslint-disable no-path-concat */ |
2 | |
3 | 'use strict'; |
4 | |
5 | var path = require('path'); |
6 | process.env.NODE_PATH = (process.env.NODE_PATH || '').split(path.delimiter) |
7 | .filter((p) => p).concat(__dirname + '/node_modules').join(path.delimiter); |
8 | require('module')._initPaths(); // eslint-disable-line no-underscore-dangle |
9 | |
10 | require('gulp'); |
11 | require('gulp-concat'); |
12 | require('gulp/bin/gulp.js'); |
13 |
Built with git-ssb-web