File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
Package . describe ( {
2
2
name : 'barbatus:typescript-compiler' ,
3
- version : '0.5.0-beta.12 ' ,
3
+ version : '0.5.0-beta.13 ' ,
4
4
summary : 'TypeScript Compiler for Meteor' ,
5
5
git : 'https://github.com/barbatus/ts-compilers' ,
6
6
documentation : 'README.md'
7
7
} ) ;
8
8
9
9
Npm . depends ( {
10
- 'meteor-typescript' : 'https://github.com/barbatus/meteor-typescript/tarball/f0be9d98fa76e6fcdb12f216e4f6696aa52757cb ' ,
10
+ 'meteor-typescript' : 'https://github.com/barbatus/meteor-typescript/tarball/0bae2a6935bb077f02ad48d359f9eba418052acf ' ,
11
11
'async' : '1.4.0'
12
12
} ) ;
13
13
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ describe('typescript-compiler', () => {
89
89
clientFile . warn = jasmine . createSpy ( ) ;
90
90
let typingsFile1 = new InputFile ( clientTypings , 'client/client.d.ts' , 'web' ) ;
91
91
92
- let serverCode = 'var server: API.Client1 ' ;
92
+ let serverCode = 'var server: API.Client ' ;
93
93
let serverTypings = 'declare module API { interface Server {} };' ;
94
94
let serverFile = new InputFile ( serverCode , 'server.ts' , 'os' ) ;
95
95
serverFile . warn = jasmine . createSpy ( ) ;
@@ -98,7 +98,7 @@ describe('typescript-compiler', () => {
98
98
99
99
expect ( clientFile . warn ) . not . toHaveBeenCalled ( ) ;
100
100
expect ( serverFile . warn ) . toHaveBeenCalled ( ) ;
101
- expect ( serverFile . warn . calls . first ( ) . args [ 0 ] . message ) . toContain ( 'Client1 ' ) ;
101
+ expect ( serverFile . warn . calls . first ( ) . args [ 0 ] . message ) . toContain ( 'Client ' ) ;
102
102
} ) ;
103
103
} ) ;
104
104
} ) ;
You can’t perform that action at this time.
0 commit comments