Skip to content

Commit c1c2c74

Browse files
committed
update nx version
1 parent 5ee0aa6 commit c1c2c74

File tree

11 files changed

+654
-582
lines changed

11 files changed

+654
-582
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,5 @@ affected-apps
128128
*.parquet
129129
.nx/cache
130130
.nx/workspace-data
131+
132+
**/vite.config.{js,ts,mjs,mts,cjs,cts}.timestamp*

apps/api-portal/next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/// <reference types="next/navigation-types/compat/navigation" />
44

55
// NOTE: This file should not be edited
6-
// see https://nextjs.org/docs/basic-features/typescript for more information.
6+
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

apps/fishing-map/next.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ const nextConfig = {
117117
productionBrowserSourceMaps: !IS_PRODUCTION,
118118
// to deploy on a node server
119119
output: 'standalone',
120-
outputFileTracing: true,
120+
// outputFileTracing: true,
121+
outputFileTracingRoot: join(__dirname, '../../'),
121122
experimental: {
122123
outputFileTracingRoot: join(__dirname, '../../'),
123124
esmExternals: true,

apps/fourwings-explorer/next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

apps/port-labeler/next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

apps/real-time-prototype/next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

apps/vessel-history/next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

jest.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const { getJestProjects } = require('@nx/jest')
1+
const { getJestProjectsAsync } = require('@nx/jest')
22

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

nx.json

+1
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,5 @@
131131
},
132132
"nxCloudAccessToken": "",
133133
"defaultBase": "develop"
134+
// "useLegacyCache": true
134135
}

package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -160,20 +160,20 @@
160160
"devDependencies": {
161161
"@globalfishingwatch/linting": "2.1.3",
162162
"@jscutlery/semver": "5.3.1",
163-
"@next/bundle-analyzer": "14.2.7",
164-
"@next/eslint-plugin-next": "14.x",
165-
"@nx/cypress": "19.6.4",
166-
"@nx/esbuild": "19.6.4",
167-
"@nx/eslint": "19.6.4",
168-
"@nx/eslint-plugin": "19.6.4",
169-
"@nx/jest": "19.6.4",
170-
"@nx/js": "19.6.4",
171-
"@nx/next": "19.6.4",
172-
"@nx/react": "19.6.4",
173-
"@nx/rollup": "19.6.4",
174-
"@nx/vite": "19.6.4",
175-
"@nx/web": "19.6.4",
176-
"@nx/workspace": "19.6.4",
163+
"@next/bundle-analyzer": "15.0.1",
164+
"@next/eslint-plugin-next": "15.0.1",
165+
"@nx/cypress": "20.0.6",
166+
"@nx/esbuild": "20.0.6",
167+
"@nx/eslint": "20.0.6",
168+
"@nx/eslint-plugin": "20.0.6",
169+
"@nx/jest": "20.0.6",
170+
"@nx/js": "20.0.6",
171+
"@nx/next": "20.0.6",
172+
"@nx/react": "20.0.6",
173+
"@nx/rollup": "20.0.6",
174+
"@nx/vite": "20.0.6",
175+
"@nx/web": "20.0.6",
176+
"@nx/workspace": "20.0.6",
177177
"@rollup/plugin-wasm": "6.2.2",
178178
"@svgr/rollup": "8.1.0",
179179
"@swc-node/register": "1.10.9",
@@ -227,7 +227,7 @@
227227
"eslint-import-resolver-typescript": "3.6.3",
228228
"eslint-plugin-cypress": "2.15.2",
229229
"eslint-plugin-flowtype": "8.0.3",
230-
"eslint-plugin-import": "2.30.0",
230+
"eslint-plugin-import": "2.31.0",
231231
"eslint-plugin-jsx-a11y": "6.9.0",
232232
"eslint-plugin-react": "7.35.1",
233233
"eslint-plugin-react-hooks": "4.6.2",
@@ -241,7 +241,7 @@
241241
"load-json-file": "7.0.1",
242242
"mochawesome": "7.1.3",
243243
"next-react-memory-stats": "1.0.2",
244-
"nx": "19.6.4",
244+
"nx": "20.0.6",
245245
"prettier": "2.8.8",
246246
"prettier-eslint": "16.3.0",
247247
"react-fps": "1.0.6",

0 commit comments

Comments
 (0)