Skip to content

Commit

Permalink
chore: upgrade packages (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder authored Dec 14, 2024
2 parents 6bb5860 + c624cf8 commit 208b1b1
Show file tree
Hide file tree
Showing 45 changed files with 14,170 additions and 15,105 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,5 @@ tmp
# Nx vite config caches
# Issue is related to https://github.com/nrwl/nx/issues/22086 and https://github.com/GoogleChrome/lighthouse/issues/16203
*.timestamp-*

vite.config.*.timestamp*
8 changes: 4 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getJestProjects } from '@nx/jest';
import { getJestProjectsAsync } from '@nx/jest';

export default {
projects: getJestProjects(),
};
export default async () => ({
projects: await getJestProjectsAsync(),
});
29 changes: 18 additions & 11 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"defaultBase": "main",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/eslint.config.js",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s",
"!{projectRoot}/src/test-setup.[jt]s",
"!{projectRoot}/test-setup.[jt]s"
],
"sharedGlobals": []
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
Expand Down Expand Up @@ -54,7 +70,6 @@
"inputs": ["production", "^production"]
}
},
"defaultBase": "main",
"generators": {
"@nx/angular:application": {
"style": "scss",
Expand All @@ -80,15 +95,6 @@
"style": "scss"
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json"
]
},
"release": {
"projects": ["esbuild-meta"],
"projectsRelationship": "independent",
Expand Down Expand Up @@ -148,5 +154,6 @@
},
"include": ["packages/esbuild-meta/**/*", "packages/runner-e2e/**/*"]
}
]
],
"useLegacyCache": true
}
Loading

0 comments on commit 208b1b1

Please sign in to comment.