Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ e2e.log
.nx/workspace-data

.nx-firebase
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md
6 changes: 3 additions & 3 deletions e2e/nx-firebase-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "e2e/nx-firebase-e2e/src",
"tags": [],
"implicitDependencies": ["nx-firebase"],
"targets": {
"e2e": {
"executor": "@nx/jest:jest",
Expand All @@ -14,7 +16,5 @@
},
"dependsOn": ["nx-firebase:build"]
}
},
"tags": [],
"implicitDependencies": ["nx-firebase"]
}
}
89 changes: 66 additions & 23 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,84 @@
{
"migrations": [
{
"version": "20.0.0-beta.7",
"description": "Migration for v20.0.0-beta.7",
"implementation": "./src/migrations/update-20-0-0/move-use-daemon-process",
"version": "21.0.0-beta.8",
"description": "Removes the legacy cache configuration from nx.json",
"implementation": "./src/migrations/update-21-0-0/remove-legacy-cache",
"package": "nx",
"name": "move-use-daemon-process"
"name": "remove-legacy-cache"
},
{
"version": "20.0.1",
"description": "Set `useLegacyCache` to true for migrating workspaces",
"implementation": "./src/migrations/update-20-0-1/use-legacy-cache",
"x-repair-skip": true,
"version": "21.0.0-beta.8",
"description": "Removes the legacy cache configuration from nx.json",
"implementation": "./src/migrations/update-21-0-0/remove-custom-tasks-runner",
"package": "nx",
"name": "use-legacy-cache"
"name": "remove-custom-tasks-runner"
},
{
"version": "20.2.0-beta.5",
"description": "Update TypeScript ESLint packages to v8.13.0 if they are already on v8",
"implementation": "./src/migrations/update-20-2-0/update-typescript-eslint-v8-13-0",
"package": "@nx/eslint",
"name": "update-typescript-eslint-v8.13.0"
"version": "21.0.0-beta.11",
"description": "Updates release version config based on the breaking changes in Nx v21",
"implementation": "./src/migrations/update-21-0-0/release-version-config-changes",
"package": "nx",
"name": "release-version-config-changes"
},
{
"version": "21.0.0-beta.11",
"description": "Updates release changelog config based on the breaking changes in Nx v21",
"implementation": "./src/migrations/update-21-0-0/release-changelog-config-changes",
"package": "nx",
"name": "release-changelog-config-changes"
},
{
"version": "21.1.0-beta.2",
"description": "Adds **/nx-rules.mdc and **/nx.instructions.md to .gitignore if not present",
"implementation": "./src/migrations/update-21-1-0/add-gitignore-entry",
"package": "nx",
"name": "21-1-0-add-ignore-entries-for-nx-rule-files"
},
{
"version": "20.3.0-beta.1",
"description": "Update ESLint flat config to include .cjs, .mjs, .cts, and .mts files in overrides (if needed)",
"implementation": "./src/migrations/update-20-3-0/add-file-extensions-to-overrides",
"package": "@nx/eslint",
"name": "add-file-extensions-to-overrides"
"version": "21.5.0-beta.2",
"description": "Migrate the legacy 'development' custom condition to a workspace-unique custom condition name.",
"factory": "./src/migrations/update-21-5-0/migrate-development-custom-condition",
"package": "@nx/js",
"name": "migrate-development-custom-condition"
},
{
"cli": "nx",
"version": "20.0.0-beta.5",
"description": "replace getJestProjects with getJestProjectsAsync",
"implementation": "./src/migrations/update-20-0-0/replace-getJestProjects-with-getJestProjectsAsync",
"version": "21.0.0-beta.9",
"description": "Replace usage of `getJestProjects` with `getJestProjectsAsync`.",
"implementation": "./src/migrations/update-21-0-0/replace-getJestProjects-with-getJestProjectsAsync",
"package": "@nx/jest",
"name": "replace-getJestProjects-with-getJestProjectsAsync-v21"
},
{
"version": "21.0.0-beta.10",
"description": "Remove the previously deprecated and unused `tsConfig` option from the `@nx/jest:jest` executor.",
"implementation": "./src/migrations/update-21-0-0/remove-tsconfig-option-from-jest-executor",
"package": "@nx/jest",
"name": "replace-getJestProjects-with-getJestProjectsAsync"
"name": "remove-tsconfig-option-from-jest-executor"
},
{
"version": "21.3.0-beta.3",
"description": "Rename the CLI option `testPathPattern` to `testPathPatterns`.",
"implementation": "./src/migrations/update-21-3-0/rename-test-path-pattern",
"package": "@nx/jest",
"name": "rename-test-path-pattern"
},
{
"version": "21.3.0-beta.3",
"requires": { "jest": ">=30.0.0" },
"description": "Replace removed matcher aliases in Jest v30 with their corresponding matcher",
"implementation": "./src/migrations/update-21-3-0/replace-removed-matcher-aliases",
"package": "@nx/jest",
"name": "replace-removed-matcher-aliases"
},
{
"cli": "nx",
"version": "21.0.0-beta.11",
"description": "Remove isolatedConfig option for @nx/webpack:webpack",
"implementation": "./src/migrations/update-21-0-0/remove-isolated-config",
"package": "@nx/webpack",
"name": "update-21-0-0-remove-isolated-config"
}
]
}
3 changes: 1 addition & 2 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,5 @@
]
},
"useInferencePlugins": false,
"defaultBase": "main",
"useLegacyCache": true
"defaultBase": "main"
}
33 changes: 17 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
"devDependencies": {
"@eslint/eslintrc": "^2.1.1",
"@google-cloud/functions-framework": "^3.3.0",
"@nx/devkit": "20.8.4",
"@nx/eslint": "20.8.4",
"@nx/eslint-plugin": "20.8.4",
"@nx/jest": "20.8.4",
"@nx/js": "20.8.4",
"@nx/node": "20.8.4",
"@nx/plugin": "20.8.4",
"@nx/webpack": "20.8.4",
"@nx/workspace": "20.8.4",
"@types/jest": "29.5.14",
"@nx/devkit": "21.6.10",
"@nx/eslint": "21.6.10",
"@nx/eslint-plugin": "21.6.10",
"@nx/jest": "21.6.10",
"@nx/js": "21.6.10",
"@nx/node": "21.6.10",
"@nx/plugin": "21.6.10",
"@nx/webpack": "21.6.10",
"@nx/workspace": "21.6.10",
"@types/jest": "30.0.0",
"@types/node": "18.19.99",
"@types/semver": "^7.3.13",
"eslint": "^9.8.0",
Expand All @@ -42,17 +42,18 @@
"firebase-functions": "7.0.3",
"firebase-functions-test": "3.4.1",
"firebase-tools": "13.35.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"kill-port": "2.0.1",
"nx": "20.8.4",
"nx": "21.6.10",
"only-allow": "^1.2.1",
"prettier": "^3.x",
"semver": "^7.6.0",
"ts-jest": "29.1.0",
"ts-jest": "29.4.6",
"tslib": "^2.0.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.19.0"
"typescript": "5.9.3",
"typescript-eslint": "^8.19.0",
"jest-util": "30.0.5"
},
"dependencies": {
"ts-node": "^10.9.2",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading