Skip to content

Commit a56b25a

Browse files
fix: migrate
1 parent 03f7cdc commit a56b25a

36 files changed

+13818
-16114
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,5 @@ tmp
122122
# Nx vite config caches
123123
# Issue is related to https://github.com/nrwl/nx/issues/22086 and https://github.com/GoogleChrome/lighthouse/issues/16203
124124
*.timestamp-*
125+
126+
vite.config.*.timestamp*

Diff for: jest.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { getJestProjects } from '@nx/jest';
1+
import { getJestProjectsAsync } from '@nx/jest';
22

3-
export default {
4-
projects: getJestProjects(),
5-
};
3+
export default async () => ({
4+
projects: await getJestProjectsAsync(),
5+
});

Diff for: nx.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,6 @@
148148
},
149149
"include": ["packages/esbuild-meta/**/*", "packages/runner-e2e/**/*"]
150150
}
151-
]
151+
],
152+
"useLegacyCache": true
152153
}

0 commit comments

Comments
 (0)