mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:23:08 +02:00
Rename project to tsProject
This commit is contained in:
parent
9db16fcdaa
commit
ac652f2723
1 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ import { IConfig } from './src/config';
|
||||||
const config = eval(require('typescript').transpile(require('fs').readFileSync('./src/config.ts').toString()))
|
const config = eval(require('typescript').transpile(require('fs').readFileSync('./src/config.ts').toString()))
|
||||||
('.config/config.yml') as IConfig;
|
('.config/config.yml') as IConfig;
|
||||||
|
|
||||||
const project = ts.createProject('tsconfig.json');
|
const tsProject = ts.createProject('tsconfig.json');
|
||||||
|
|
||||||
gulp.task('build', [
|
gulp.task('build', [
|
||||||
'build:js',
|
'build:js',
|
||||||
|
@ -51,9 +51,9 @@ gulp.task('build:js', () =>
|
||||||
);
|
);
|
||||||
|
|
||||||
gulp.task('build:ts', () =>
|
gulp.task('build:ts', () =>
|
||||||
project
|
tsProject
|
||||||
.src()
|
.src()
|
||||||
.pipe(project())
|
.pipe(tsProject())
|
||||||
.pipe(babel({
|
.pipe(babel({
|
||||||
presets: ['es2015', 'stage-3']
|
presets: ['es2015', 'stage-3']
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue