You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-22Lines changed: 30 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
2
2
# TypeScript
3
3
4
-
[](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://gitter.im/microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
* Read the language specification ([docx](https://github.com/microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
For details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).
107
+
For details on our planned features and future direction please refer to our [roadmap](https://github.com/microsoft/TypeScript/wiki/Roadmap).
["git",["checkout",process.env.TARGET_BRANCH]],// checkout the target branch
54
55
["git",["checkout","-b",branchName]],// create a new branch
55
-
["git",["cherry-pick",squashSha.trim()]],//
56
+
["git",["cherry-pick",squashSha.trim()]],
57
+
]);
58
+
if(produceLKG){
59
+
runSequence([
60
+
["gulp",["LKG"]],
61
+
["git",["add","lib"]],
62
+
["git",["commit","-m",`"Update LKG"`]]
63
+
]);
64
+
}
65
+
runSequence([
56
66
["git",["remote","add","fork",remoteUrl]],// Add the remote fork
57
67
["git",["push","--set-upstream","fork",branchName,"-f"]]// push the branch
58
68
]);
@@ -71,7 +81,7 @@ ${logText.trim()}`
71
81
base: process.env.TARGET_BRANCH,
72
82
body:
73
83
`This cherry-pick was triggerd by a request on https://github.com/Microsoft/TypeScript/pull/${process.env.SOURCE_ISSUE}
74
-
Please review the diff and merge if no changes are unexpected.
84
+
Please review the diff and merge if no changes are unexpected.${produceLKG ? ` An LKG update commit is included seperately from the base change.` : ""}
75
85
You can view the cherry-pick log [here](https://typescript.visualstudio.com/TypeScript/_build/index?buildId=${process.env.BUILD_BUILDID}&_a=summary).
0 commit comments