Skip to content

Commit

Permalink
Merge pull request #414 from ivogabe/v3
Browse files Browse the repository at this point in the history
Version 3
  • Loading branch information
ivogabe authored Sep 22, 2016
2 parents 6939231 + d03baed commit 5cf1ec9
Show file tree
Hide file tree
Showing 232 changed files with 1,040 additions and 3,423 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
12 changes: 6 additions & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ gulp.task('clean-release', function(cb) {
// Compile sources
gulp.task('scripts', ['clean'], function() {
var tsResult = gulp.src(paths.scripts.concat(paths.definitionTypeScript))
.pipe(ts(tsProject));
.pipe(tsProject());

return mergeStream(tsResult.js, tsResult.dts)
.pipe(gulp.dest(paths.releaseBeta));
Expand Down Expand Up @@ -96,7 +96,7 @@ gulp.task('typecheck-dev', function() {
])).pipe(ts(tsOptions));
});

gulp.task('typecheck', ['typecheck-1.4', 'typecheck-1.5', 'typecheck-1.6', 'typecheck-dev']);
gulp.task('typecheck', [/* 'typecheck-1.4', 'typecheck-1.5', 'typecheck-1.6', */ 'typecheck-dev']);

// Tests

Expand All @@ -105,12 +105,12 @@ function runTest(name, callback) {
var newTS = require('./release-2/main');
// We run every test on multiple typescript versions:
var libs = [
['1.8', undefined],
['dev', require(tsVersions.dev)],
['1.4', require(tsVersions.release14)],
['2.0', undefined],
['dev', require(tsVersions.dev)]
/* ['1.4', require(tsVersions.release14)],
['1.5', require(tsVersions.release15)],
['1.6', require(tsVersions.release16)],
['1.7', require(tsVersions.release17)]
['1.7', require(tsVersions.release17)] */
];
var test = require('./test/' + name + '/gulptask.js');

Expand Down
Loading

0 comments on commit 5cf1ec9

Please sign in to comment.