/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
gulpfile.js
16 строк
399 B
Livio
build(): Refactor Gulpfile to TS
07 авг 2019, 23:08
Не верифицирован
07 авг 2019, 23:08
0686162
Код
Авторство
О чём код?
'use strict'; /** * Load the TypeScript compiler, then load the TypeScript gulpfile which simply loads all * the tasks. The tasks are really inside tools/gulp/tasks. */ const path = require('path'); const projectDir = __dirname; const tsconfigPath = path.join(projectDir, 'tools/gulp/tsconfig.json'); require('ts-node').register({ project: tsconfigPath }); require('./tools/gulp/gulpfile');