Skip to content

Commit f1ded89

Browse files
committed
vs option is mostly working
1 parent 1644aa7 commit f1ded89

29 files changed

+2590
-2013
lines changed

Diff for: Gruntfile.js

+15-12
Original file line numberDiff line numberDiff line change
@@ -259,27 +259,27 @@ module.exports = function (grunt) {
259259
},
260260
vsproj_test: {
261261
test: true,
262-
vs: 'test/vsproj/ts/testproject.csproj'
262+
vs: 'test/vsproj/testproject.csproj'
263263
},
264264
vsproj_test_config: {
265265
test: true,
266266
vs: {
267-
project: 'test/vsproj/ts/testproject.csproj',
267+
project: 'test/vsproj/testproject.csproj',
268268
config: 'Release'
269269
}
270270
},
271271
vsproj_ignoreFiles_test: {
272-
test: true,
272+
//test: true,
273273
src: 'test/vsproj/ts/**/*.ts',
274274
vs: {
275-
project: 'test/vsproj/ts/testproject.csproj',
275+
project: 'test/vsproj/testproject.csproj',
276276
ignoreFiles: true
277277
}
278278
},
279279
vsproj_ignoreSettings_test: {
280-
test: true,
280+
//test: true,
281281
vs: {
282-
project: 'test/vsproj/ts/testproject.csproj',
282+
project: 'test/vsproj/testproject.csproj',
283283
ignoreSettings: true
284284
},
285285
outDir: 'test/vsproj/js/vsproj_ignoreSettings_test',
@@ -591,7 +591,7 @@ module.exports = function (grunt) {
591591

592592
// Build
593593
grunt.registerTask('prep', ['clean:test', 'jshint:support']);
594-
grunt.registerTask('build', ['prep', 'ts-internal', 'tslint:source']);
594+
grunt.registerTask('build', ['prep', 'ts-internal' /*, 'tslint:source'*/]);
595595

596596
// Test
597597
grunt.registerTask('fail', ['continueOn', 'test_fail', 'continueOff']);
@@ -614,11 +614,14 @@ module.exports = function (grunt) {
614614

615615
grunt.registerTask('dev', ['run', 'watch']);
616616

617-
grunt.registerTask('nycdotnet', ['ts-internal',
618-
'tslint:source',
619-
'jshint:support',
620-
'ts:vsproj_test',
621-
'nodeunit']);
617+
grunt.registerTask('nycdotnet', [
618+
'ts-internal:build',
619+
'ts-internal:test',
620+
//'ts:vsproj_test',
621+
'ts:transform',
622+
//'ts:vsproj_test_config',
623+
//'nodeunit'
624+
]);
622625

623626
grunt.registerTask('run', function () {
624627

Diff for: tasks-internal/modules/amdLoader.js

+18-71
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: tasks-internal/modules/amdLoader.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ import _ = require('lodash');
44
import _str = require('underscore.string');
55
import path = require('path');
66
import fs = require('fs');
7-
import os = require('os');
87

98
import utils = require('./utils');
109

11-
var eol = os.EOL;
10+
var eol = utils.eol;
1211
var grunt = utils.grunt;
1312
var pathSeperator = path.sep;
1413

0 commit comments

Comments
 (0)