Skip to content

Commit

Permalink
fix(misc): update the version check not to exclude v15
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Oct 25, 2022
1 parent d5d8b21 commit e24632f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/create-nx-workspace/bin/ab-testing.ts
Expand Up @@ -63,7 +63,7 @@ export async function recordStat(opts: {
if (process.env.NX_VERBOSE_LOGGING === 'true') {
console.log(`Record stat. Major: ${major}`);
}
if (major < 10 || major > 14) return; // test version, skip it
if (major < 10 || major > 15) return; // test version, skip it
await axios
.create({
baseURL: 'https://cloud.nx.app',
Expand Down
2 changes: 1 addition & 1 deletion packages/nx/src/utils/ab-testing.ts
Expand Up @@ -63,7 +63,7 @@ export async function recordStat(opts: {
if (process.env.NX_VERBOSE_LOGGING === 'true') {
console.log(`Record stat. Major: ${major}`);
}
if (major < 10 || major > 14) return; // test version, skip it
if (major < 10 || major > 15) return; // test version, skip it
await axios
.create({
baseURL: 'https://cloud.nx.app',
Expand Down

0 comments on commit e24632f

Please sign in to comment.