File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
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.4 ' ,
3
+ version : '0.5.0-beta.5 ' ,
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' : '0.6.0-beta.1 ' ,
10
+ 'meteor-typescript' : '0.6.0-beta.2 ' ,
11
11
'async' : '1.4.0'
12
12
} ) ;
13
13
Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ InputFile = class InputFile {
40
40
addJavaScript ( result ) {
41
41
this . result = result ;
42
42
}
43
+
44
+ getArch ( ) {
45
+ return 'os' ;
46
+ }
43
47
}
44
48
45
49
ConfigFile = class ConfigFile extends InputFile {
Original file line number Diff line number Diff line change @@ -58,11 +58,13 @@ TypeScriptCompiler = class TypeScriptCompiler {
58
58
let filePath = this . getExtendedPath ( inputFile ) ;
59
59
let typings = this . tsconfig ? this . tsconfig . typings : [ ] ;
60
60
let moduleName = this . getFileModuleName ( inputFile , compilerOptions ) ;
61
+ let arch = inputFile . getArch ( ) ;
61
62
let tsOptions = {
62
63
compilerOptions,
63
64
moduleName,
64
65
filePath,
65
- typings
66
+ typings,
67
+ arch
66
68
} ;
67
69
68
70
let error = null ;
You can’t perform that action at this time.
0 commit comments