mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
// Register TS compilation.
|
|
require('ts-node').register({
|
|
project: path.join(__dirname, 'scripts/gulp')
|
|
});
|
|
|
|
require('./scripts/gulp/gulpfile');
|