Skip to content

Commit ffc4f95

Browse files
chore(*): upgrade to Typescript compiler 1.5.2? 1.5.3?
1 parent 10fbddc commit ffc4f95

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ module.exports = function (grunt) {
2323
src: files.src,
2424
outDir: '<%= builddir %>/ts2es5',
2525
options: {
26+
//target: "es6"
2627
//module: 'amd', //or commonjs
27-
module: 'commonjs'
28+
module: 'commonjs'
2829
}
2930
}
3031
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"load-grunt-tasks": "~0.4.0",
6464
"grunt-conventional-changelog": "~1.1.0",
6565
"grunt-ngdocs": "~0.1.7",
66-
"grunt-ts": "^4.2.0-beta.1",
66+
"grunt-ts": "https://github.com/christopherthielen/grunt-ts/tarball/2529971636e0eada4b81712f8d2f12fa89545ca8",
6767
"grunt-webpack": "^1.0.10"
6868
},
6969
"main": "release/angular-ui-router"

test/viewDirectiveSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ describe('uiView', function () {
422422
expect(uiViews.eq(2).text()).toBe(lState.views.view3.template);
423423
}));
424424

425-
fit ('should interpolate ui-view names', inject(function($state, $q, $compile) {
425+
it ('should interpolate ui-view names', inject(function($state, $q, $compile) {
426426
elem.append($compile('<div ng-repeat="view in views">' +
427427
'<ui-view name="view{{$index + 1}}">hallo</ui-view>' +
428428
'</div>')(scope));

0 commit comments

Comments
 (0)