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
{{ message }}
This repository was archived by the owner on Oct 3, 2023. It is now read-only.
GTS v1 release contains breaking changes. Picking up this update most likely will cause a breaking change in our project. Need to take care when picking up this update
Breaking Changes
GTS switched to prettier as the code formatting tool (#259). gts run fix should migrate your code over to the new style 💅.
This release drops support for Node 6 which will reach end-of-life in April 2019 (#256) 💀.
This release defaults to ES2017 as the TypeScript code generation target. This means that the generated code needs a minimum of Node 8 to run. On the plus side this means that generated code would use native implementation of ES2017 features (e.g. async/await) rather than using poly-fills 🧬. This change is most likely a breaking change for your module. You can override this setting by customizing your tsconfig.json however.
The tslint configuration has been updated to pick up changes in the Google style guide🧐.
Assumes that target projects are using TypeScript 3.x+ 🎯.