1 Star 0 Fork 0

绿荫阿广/components

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 705 Bytes
一键复制 编辑 原始数据 按行查看 历史
'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');
const tsconfig = require(tsconfigPath);
if (projectDir.includes(' ')) {
console.error('Error: Cannot run the Angular Material build tasks if the project is ' +
'located in a directory with spaces in between. Please rename your project directory.');
process.exit(1);
}
// Register TS compilation.
require('ts-node').register({
project: tsconfigPath
});
require('./tools/gulp/gulpfile');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/greenshade/components.git
git@gitee.com:greenshade/components.git
greenshade
components
components
master

搜索帮助