Turn v12 feature switch on

See https://github.com/balena-io/balena-cli/issues/1770

Change-type: major
This commit is contained in:
Paulo Castro
2020-06-15 23:52:58 +01:00
parent 432109060e
commit a7b78d2ccd
2 changed files with 76 additions and 91 deletions

View File

@ -26,7 +26,9 @@ let v12: boolean;
export function isV12(): boolean {
if (v12 === undefined) {
v12 = isVersionGTE('12.0.0');
// This is the `Change-type: major` PR that will produce v12.0.0.
// Enable the v12 feature switches and run all v12 tests.
v12 = true; // v12 = isVersionGTE('12.0.0');
}
return v12;
}