-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b699664
commit 5954a39
Showing
10 changed files
with
3,356 additions
and
4,982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Nx 18 enables using plugins to infer targets by default | ||
# This is disabled for existing workspaces to maintain compatibility | ||
# For more info, see: https://nx.dev/concepts/inferred-tasks | ||
NX_ADD_PLUGINS=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
import { defineConfig } from '@playwright/test'; | ||
import { defineConfig, devices } from '@playwright/test'; | ||
import { nxE2EPreset } from '@nx/playwright/preset'; | ||
|
||
import { workspaceRoot } from '@nx/devkit'; | ||
|
||
// For CI, you may want to set BASE_URL to the deployed application. | ||
const baseURL = process.env['BASE_URL'] || 'http://localhost:4200'; | ||
|
||
/** | ||
* Read environment variables from file. | ||
* https://github.com/motdotla/dotenv | ||
*/ | ||
// require('dotenv').config(); | ||
|
||
/** | ||
* See https://playwright.dev/docs/test-configuration. | ||
*/ | ||
export default defineConfig({ | ||
...nxE2EPreset(__filename, { testDir: './src' }), | ||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ | ||
use: { | ||
baseURL, | ||
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ | ||
trace: 'on-first-retry', | ||
}, | ||
/* Run your local dev server before starting the tests */ | ||
webServer: { | ||
command: 'npx nx serve query', | ||
url: 'http://localhost:4200', | ||
reuseExistingServer: !process.env.CI, | ||
cwd: workspaceRoot, | ||
}, | ||
}); | ||
export default defineConfig({ ...nxE2EPreset(__filename, { testDir: './src' }), | ||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ | ||
use: { | ||
baseURL, | ||
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ | ||
trace: 'on-first-retry', | ||
}, | ||
/* Run your local dev server before starting the tests */ | ||
webServer: { | ||
command: 'npx nx serve query', | ||
url: 'http://localhost:4200', | ||
reuseExistingServer: !process.env.CI, | ||
cwd: workspaceRoot, | ||
}, projects: [ | ||
{ name: "chromium", use: { ...devices["Desktop Chrome"] } }, | ||
{ name: "firefox", use: { ...devices["Desktop Firefox"] } }, | ||
{ name: "webkit", use: { ...devices["Desktop Safari"] } } | ||
] }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,92 @@ | ||
{ | ||
"migrations": [ | ||
{ | ||
"version": "17.1.0-beta.2", | ||
"description": "Move jest executor options to nx.json targetDefaults", | ||
"implementation": "./src/migrations/update-17-1-0/move-options-to-target-defaults", | ||
"package": "@nx/jest", | ||
"name": "move-options-to-target-defaults" | ||
"cli": "nx", | ||
"version": "17.3.0-beta.6", | ||
"description": "Updates the nx wrapper.", | ||
"implementation": "./src/migrations/update-17-3-0/update-nxw", | ||
"package": "nx", | ||
"name": "17.3.0-update-nx-wrapper" | ||
}, | ||
{ | ||
"version": "17.1.0-beta.1", | ||
"description": "Updates for @typescript-utils/utils v6.9.1+", | ||
"implementation": "./src/migrations/update-17-1-0/update-typescript-eslint", | ||
"package": "@nx/eslint", | ||
"name": "update-typescript-eslint" | ||
"cli": "nx", | ||
"version": "18.0.0-beta.2", | ||
"description": "Updates .env to disabled adding plugins when generating projects in an existing Nx workspace", | ||
"implementation": "./src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces", | ||
"x-repair-skip": true, | ||
"package": "nx", | ||
"name": "18.0.0-disable-adding-plugins-for-existing-workspaces" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Update the @angular/cli package version to ~17.0.0.", | ||
"factory": "./src/migrations/update-17-1-0/update-angular-cli", | ||
"version": "17.2.0-beta.2", | ||
"description": "Rename '@nx/angular:webpack-dev-server' executor to '@nx/angular:dev-server'", | ||
"factory": "./src/migrations/update-17-2-0/rename-webpack-dev-server", | ||
"package": "@nx/angular", | ||
"name": "update-angular-cli-version-17-0-0" | ||
"name": "rename-webpack-dev-server-executor" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"version": "17.3.0-beta.10", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
"@angular/core": ">=17.1.0" | ||
}, | ||
"description": "Rename 'browserTarget' to 'buildTarget'.", | ||
"factory": "./src/migrations/update-17-1-0/browser-target-to-build-target", | ||
"description": "Update the @angular/cli package version to ~17.1.0.", | ||
"factory": "./src/migrations/update-17-3-0/update-angular-cli", | ||
"package": "@nx/angular", | ||
"name": "rename-browser-target-to-build-target" | ||
"name": "update-angular-cli-version-17-1-0" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"version": "17.3.0-beta.10", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
"@angular/core": ">=17.1.0" | ||
}, | ||
"description": "Replace usages of '@nguniversal/builders' with '@angular-devkit/build-angular'.", | ||
"factory": "./src/migrations/update-17-1-0/replace-nguniversal-builders", | ||
"description": "Add 'browser-sync' as dev dependency when '@angular-devkit/build-angular:ssr-dev-server' or '@nx/angular:module-federation-dev-ssr' is used.", | ||
"factory": "./src/migrations/update-17-3-0/add-browser-sync-dependency", | ||
"package": "@nx/angular", | ||
"name": "replace-nguniversal-builders" | ||
"name": "add-browser-sync-dependency" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"version": "17.3.0-beta.10", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
"@angular/core": ">=17.1.0" | ||
}, | ||
"description": "Replace usages of '@nguniversal/' packages with '@angular/ssr'.", | ||
"factory": "./src/migrations/update-17-1-0/replace-nguniversal-engines", | ||
"description": "Add 'autoprefixer' as dev dependency when '@nx/angular:ng-packagr-lite' or '@nx/angular:package` is used.", | ||
"factory": "./src/migrations/update-17-3-0/add-autoprefixer-dependency", | ||
"package": "@nx/angular", | ||
"name": "replace-nguniversal-engines" | ||
"name": "add-autoprefixer-dependency" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Replace the deep imports from 'zone.js/dist/zone' and 'zone.js/dist/zone-testing' with 'zone.js' and 'zone.js/testing'.", | ||
"factory": "./src/migrations/update-17-1-0/update-zone-js-deep-import", | ||
"version": "18.0.0-beta.0", | ||
"description": "Add NX_MF_DEV_SERVER_STATIC_REMOTES to inputs for task hashing when '@nx/angular:webpack-browser' is used for Module Federation.", | ||
"factory": "./src/migrations/update-18-0-0/add-mf-env-var-to-target-defaults", | ||
"package": "@nx/angular", | ||
"name": "update-zone-js-deep-import" | ||
"name": "add-module-federation-env-var-to-target-defaults" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "Angular v17 introduces a new control flow syntax that uses the @ and } characters. This migration replaces the existing usages with their corresponding HTML entities.", | ||
"factory": "./migrations/block-template-entities/bundle", | ||
"package": "@angular/core", | ||
"name": "block-template-entities" | ||
"version": "17.2.0-beta.0", | ||
"description": "Simplify eslintFilePatterns", | ||
"implementation": "./src/migrations/update-17-2-0/simplify-eslint-patterns", | ||
"package": "@nx/eslint", | ||
"name": "simplify-eslint-patterns" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "CompilerOption.useJit and CompilerOption.missingTranslation are unused under Ivy. This migration removes their usage", | ||
"factory": "./migrations/compiler-options/bundle", | ||
"package": "@angular/core", | ||
"name": "migration-v17-compiler-options" | ||
"version": "17.2.9", | ||
"description": "Move executor options to target defaults", | ||
"implementation": "./src/migrations/update-17-2-9/move-options-to-target-defaults", | ||
"package": "@nx/eslint", | ||
"name": "move-options-to-target-defaults" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "Updates `TransferState`, `makeStateKey`, `StateKey` imports from `@angular/platform-browser` to `@angular/core`.", | ||
"factory": "./migrations/transfer-state/bundle", | ||
"package": "@angular/core", | ||
"name": "migration-transfer-state" | ||
"cli": "nx", | ||
"version": "17.3.1-beta.0", | ||
"description": "Add project property to playwright config", | ||
"implementation": "./src/migrations/update-17-3-1/add-project-to-config", | ||
"package": "@nx/playwright", | ||
"name": "17-3-1-add-project-to-config" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.