Skip to content

Commit 166ab5b

Browse files
author
Philipp Zins
committed
added es2017.intl in missing places
1 parent 763df54 commit 166ab5b

File tree

11 files changed

+641
-633
lines changed

11 files changed

+641
-633
lines changed

Gulpfile.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ const es2017LibrarySource = [
131131
"es2017.object.d.ts",
132132
"es2017.sharedmemory.d.ts",
133133
"es2017.string.d.ts",
134+
"es2017.intl.d.ts"
134135
];
135136

136137
const es2017LibrarySourceMap = es2017LibrarySource.map(function(source) {

Jakefile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ var es2016LibrarySourceMap = es2016LibrarySource.map(function (source) {
172172
var es2017LibrarySource = [
173173
"es2017.object.d.ts",
174174
"es2017.sharedmemory.d.ts",
175-
"es2017.string.d.ts"
175+
"es2017.string.d.ts",
176+
"es2017.intl.d.ts"
176177
];
177178

178179
var es2017LibrarySourceMap = es2017LibrarySource.map(function (source) {

lib/lib.es2017.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ and limitations under the License.
2222
/// <reference path="lib.es2017.object.d.ts" />
2323
/// <reference path="lib.es2017.sharedmemory.d.ts" />
2424
/// <reference path="lib.es2017.string.d.ts" />
25+
/// <reference path="lib.es2017.intl.d.ts" />

lib/tsc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52775,6 +52775,7 @@ var ts;
5277552775
"es2017.object": "lib.es2017.object.d.ts",
5277652776
"es2017.sharedmemory": "lib.es2017.sharedmemory.d.ts",
5277752777
"es2017.string": "lib.es2017.string.d.ts",
52778+
"es2017.intl": "lib.es2017.intl.d.ts",
5277852779
}),
5277952780
},
5278052781
description: ts.Diagnostics.Specify_library_files_to_be_included_in_the_compilation_Colon

lib/tsserver.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54113,6 +54113,7 @@ var ts;
5411354113
"es2017.object": "lib.es2017.object.d.ts",
5411454114
"es2017.sharedmemory": "lib.es2017.sharedmemory.d.ts",
5411554115
"es2017.string": "lib.es2017.string.d.ts",
54116+
"es2017.intl": "lib.es2017.intl.d.ts",
5411654117
}),
5411754118
},
5411854119
description: ts.Diagnostics.Specify_library_files_to_be_included_in_the_compilation_Colon

lib/tsserverlibrary.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6285,6 +6285,7 @@ var ts;
62856285
"es2017.object": "lib.es2017.object.d.ts",
62866286
"es2017.sharedmemory": "lib.es2017.sharedmemory.d.ts",
62876287
"es2017.string": "lib.es2017.string.d.ts",
6288+
"es2017.intl": "lib.es2017.intl.d.ts",
62886289
}),
62896290
},
62906291
description: ts.Diagnostics.Specify_library_files_to_be_included_in_the_compilation_Colon

lib/typescript.js

Lines changed: 316 additions & 315 deletions
Large diffs are not rendered by default.

lib/typescriptServices.js

Lines changed: 316 additions & 315 deletions
Large diffs are not rendered by default.

lib/typingsInstaller.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5332,6 +5332,7 @@ var ts;
53325332
"es2017.object": "lib.es2017.object.d.ts",
53335333
"es2017.sharedmemory": "lib.es2017.sharedmemory.d.ts",
53345334
"es2017.string": "lib.es2017.string.d.ts",
5335+
"es2017.intl": "lib.es2017.intl.d.ts",
53355336
}),
53365337
},
53375338
description: ts.Diagnostics.Specify_library_files_to_be_included_in_the_compilation_Colon

src/compiler/commandLineParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1662,4 +1662,4 @@ namespace ts {
16621662
function caseInsensitiveKeyMapper(key: string) {
16631663
return key.toLowerCase();
16641664
}
1665-
}}
1665+
}

src/lib/es2017.intl.ts renamed to src/lib/es2017.intl.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ interface DateTimeFormatPart {
55
value: string;
66
}
77

8-
98
interface DateTimeFormat {
109
formatToParts(date?: Date | number): DateTimeFormatPart[];
1110
}

0 commit comments

Comments
 (0)