Skip to content

Commit

Permalink
fix(core): add migration to set useLegacyCache by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Oct 15, 2024
1 parent e0f9a5c commit a24ec2c
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
59 changes: 59 additions & 0 deletions packages/nx/src/migrations/update-20-0-1/use-legacy-cache.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import { createTreeWithEmptyWorkspace } from '../../generators/testing-utils/create-tree-with-empty-workspace';
import { Tree } from '../../generators/tree';

import update from './use-legacy-cache';
import { readNxJson, updateNxJson } from '../../generators/utils/nx-json';

describe('use legacy cache', () => {
let tree: Tree;

beforeEach(() => {
tree = createTreeWithEmptyWorkspace();
});

it('should add `useLegacyCache` on migrating workspaces that did not have `enableDbCache`', async () => {
await update(tree);

expect(readNxJson(tree)).toMatchInlineSnapshot(`
{
"affected": {
"defaultBase": "main",
},
"targetDefaults": {
"build": {
"cache": true,
},
"lint": {
"cache": true,
},
},
"useLegacyCache": true,
}
`);
});
it('should not add `useLegacyCache` on migrating workspaces that did have `enableDbCache`', async () => {
const nxJson = readNxJson(tree);
updateNxJson(tree, {
enableDbCache: true,
...nxJson,
} as any);

await update(tree);

expect(readNxJson(tree)).toMatchInlineSnapshot(`
{
"affected": {
"defaultBase": "main",
},
"targetDefaults": {
"build": {
"cache": true,
},
"lint": {
"cache": true,
},
},
}
`);
});
});
19 changes: 19 additions & 0 deletions packages/nx/src/migrations/update-20-0-1/use-legacy-cache.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { Tree } from '../../generators/tree';
import { formatChangedFilesWithPrettierIfAvailable } from '../../generators/internal-utils/format-changed-files-with-prettier-if-available';
import { readNxJson, updateNxJson } from '../../generators/utils/nx-json';
import { NxJsonConfiguration } from '../../config/nx-json';

export default async function update(tree: Tree) {
const nxJson = readNxJson(tree) as NxJsonConfiguration;

// If workspaces had `enableDbCache` we can just delete the property as the db cache is enabled by default in nx v20
if ((nxJson as any).enableDbCache) {
delete (nxJson as any).enableDbCache;
} else {
nxJson.useLegacyCache = true;
}

updateNxJson(tree, nxJson);

await formatChangedFilesWithPrettierIfAvailable(tree);
}

0 comments on commit a24ec2c

Please sign in to comment.