Skip to content

Commit

Permalink
tools() add gulp and clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Sep 16, 2019
1 parent 16ab6df commit c7064ad
Show file tree
Hide file tree
Showing 8 changed files with 1,576 additions and 1 deletion.
16 changes: 16 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
'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');
Loading

0 comments on commit c7064ad

Please sign in to comment.