|
23 | 23 | "options": {
|
24 | 24 | "configFile": "{projectRoot}/vitest.unit.config.ts",
|
25 | 25 | "passWithNoTests": true,
|
26 |
| - "coverage": { "enabled": true } |
| 26 | + "coverage": { |
| 27 | + "enabled": true |
| 28 | + } |
27 | 29 | }
|
28 | 30 | },
|
29 | 31 | "int-test": {
|
|
33 | 35 | "options": {
|
34 | 36 | "configFile": "{projectRoot}/vitest.int.config.ts",
|
35 | 37 | "passWithNoTests": true,
|
36 |
| - "coverage": { "enabled": true } |
| 38 | + "coverage": { |
| 39 | + "enabled": true |
| 40 | + } |
37 | 41 | }
|
38 | 42 | },
|
39 |
| - "e2e": { "dependsOn": ["^build"] }, |
| 43 | + "e2e": { |
| 44 | + "dependsOn": ["^build"] |
| 45 | + }, |
40 | 46 | "lint": {
|
41 | 47 | "inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"],
|
42 | 48 | "executor": "@nx/linter:eslint",
|
|
50 | 56 | ]
|
51 | 57 | }
|
52 | 58 | },
|
53 |
| - "nxv-pkg-install": { "parallelism": false }, |
| 59 | + "nxv-pkg-install": { |
| 60 | + "parallelism": false |
| 61 | + }, |
54 | 62 | "@nx/vite:test": {
|
55 | 63 | "cache": true,
|
56 | 64 | "inputs": ["default", "^production"],
|
57 |
| - "options": { "passWithNoTests": true, "watch": false } |
| 65 | + "options": { |
| 66 | + "passWithNoTests": true, |
| 67 | + "watch": false |
| 68 | + } |
58 | 69 | },
|
59 | 70 | "nx-release-publish": {
|
60 | 71 | "dependsOn": ["build"],
|
|
88 | 99 | ],
|
89 | 100 | "sharedGlobals": []
|
90 | 101 | },
|
91 |
| - "workspaceLayout": { "appsDir": "examples", "libsDir": "packages" }, |
| 102 | + "workspaceLayout": { |
| 103 | + "appsDir": "examples", |
| 104 | + "libsDir": "packages" |
| 105 | + }, |
92 | 106 | "generators": {},
|
93 | 107 | "release": {
|
94 | 108 | "projects": ["packages/*"],
|
95 | 109 | "projectsRelationship": "fixed",
|
96 | 110 | "changelog": {
|
97 | 111 | "automaticFromRef": true,
|
98 | 112 | "projectChangelogs": false,
|
99 |
| - "workspaceChangelog": { "createRelease": "github" } |
| 113 | + "workspaceChangelog": { |
| 114 | + "createRelease": "github" |
| 115 | + } |
100 | 116 | },
|
101 | 117 | "git": {
|
102 | 118 | "commit": true,
|
|
107 | 123 | },
|
108 | 124 | "version": {
|
109 | 125 | "conventionalCommits": true,
|
110 |
| - "generatorOptions": { "skipLockFileUpdate": true } |
| 126 | + "generatorOptions": { |
| 127 | + "skipLockFileUpdate": true |
| 128 | + } |
111 | 129 | },
|
112 | 130 | "releaseTagPattern": "v{version}"
|
113 | 131 | },
|
|
118 | 136 | "environments": {
|
119 | 137 | "environmentsDir": "tmp/e2e",
|
120 | 138 | "targetNames": ["e2e"],
|
121 |
| - "inferredTargets": { "e2e": "e2e-test" } |
| 139 | + "inferredTargets": { |
| 140 | + "e2e": "e2e-test" |
| 141 | + } |
122 | 142 | },
|
123 |
| - "packages": { "filterByTags": ["publishable"] } |
| 143 | + "packages": { |
| 144 | + "filterByTags": ["publishable"] |
| 145 | + } |
124 | 146 | }
|
125 | 147 | }
|
126 | 148 | ],
|
|
0 commit comments