|
14 | 14 | } |
15 | 15 | }, |
16 | 16 | "build": { |
17 | | - "executor": "@nrwl/next:build", |
| 17 | + "executor": "@nx/next:build", |
18 | 18 | "outputs": ["{options.outputPath}"], |
19 | 19 | "defaultConfiguration": "production", |
20 | 20 | "dependsOn": ["prebuild"], |
|
30 | 30 | } |
31 | 31 | }, |
32 | 32 | "serve": { |
33 | | - "executor": "@nrwl/next:server", |
| 33 | + "executor": "@nx/next:server", |
34 | 34 | "defaultConfiguration": "development", |
35 | 35 | "dependsOn": ["prebuild"], |
36 | 36 | "options": { |
|
49 | 49 | } |
50 | 50 | }, |
51 | 51 | "export": { |
52 | | - "executor": "@nrwl/next:export", |
| 52 | + "executor": "@nx/next:export", |
53 | 53 | "dependsOn": ["build"], |
54 | 54 | "options": { |
55 | 55 | "buildTarget": "landing-page:build:production" |
|
77 | 77 | } |
78 | 78 | }, |
79 | 79 | "test": { |
80 | | - "executor": "@nrwl/jest:jest", |
| 80 | + "executor": "@nx/jest:jest", |
81 | 81 | "outputs": ["{workspaceRoot}/coverage/apps/landing-page"], |
82 | 82 | "options": { |
83 | 83 | "jestConfig": "apps/landing-page/jest.config.ts", |
84 | 84 | "passWithNoTests": true |
85 | 85 | } |
86 | 86 | }, |
87 | 87 | "lint": { |
88 | | - "executor": "@nrwl/linter:eslint", |
| 88 | + "executor": "@nx/linter:eslint", |
89 | 89 | "outputs": ["{options.outputFile}"], |
90 | 90 | "options": { |
91 | 91 | "lintFilePatterns": ["apps/landing-page/**/*.{ts,tsx,js,jsx}"] |
|
0 commit comments