Skip to content

Commit 1a07691

Browse files
BioPhotonmatejchalk
authored andcommitted
fix: format files
1 parent 47f14d3 commit 1a07691

File tree

1 file changed

+32
-10
lines changed

1 file changed

+32
-10
lines changed

nx.json

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
"options": {
2424
"configFile": "{projectRoot}/vitest.unit.config.ts",
2525
"passWithNoTests": true,
26-
"coverage": { "enabled": true }
26+
"coverage": {
27+
"enabled": true
28+
}
2729
}
2830
},
2931
"int-test": {
@@ -33,10 +35,14 @@
3335
"options": {
3436
"configFile": "{projectRoot}/vitest.int.config.ts",
3537
"passWithNoTests": true,
36-
"coverage": { "enabled": true }
38+
"coverage": {
39+
"enabled": true
40+
}
3741
}
3842
},
39-
"e2e": { "dependsOn": ["^build"] },
43+
"e2e": {
44+
"dependsOn": ["^build"]
45+
},
4046
"lint": {
4147
"inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"],
4248
"executor": "@nx/linter:eslint",
@@ -50,11 +56,16 @@
5056
]
5157
}
5258
},
53-
"nxv-pkg-install": { "parallelism": false },
59+
"nxv-pkg-install": {
60+
"parallelism": false
61+
},
5462
"@nx/vite:test": {
5563
"cache": true,
5664
"inputs": ["default", "^production"],
57-
"options": { "passWithNoTests": true, "watch": false }
65+
"options": {
66+
"passWithNoTests": true,
67+
"watch": false
68+
}
5869
},
5970
"nx-release-publish": {
6071
"dependsOn": ["build"],
@@ -88,15 +99,20 @@
8899
],
89100
"sharedGlobals": []
90101
},
91-
"workspaceLayout": { "appsDir": "examples", "libsDir": "packages" },
102+
"workspaceLayout": {
103+
"appsDir": "examples",
104+
"libsDir": "packages"
105+
},
92106
"generators": {},
93107
"release": {
94108
"projects": ["packages/*"],
95109
"projectsRelationship": "fixed",
96110
"changelog": {
97111
"automaticFromRef": true,
98112
"projectChangelogs": false,
99-
"workspaceChangelog": { "createRelease": "github" }
113+
"workspaceChangelog": {
114+
"createRelease": "github"
115+
}
100116
},
101117
"git": {
102118
"commit": true,
@@ -107,7 +123,9 @@
107123
},
108124
"version": {
109125
"conventionalCommits": true,
110-
"generatorOptions": { "skipLockFileUpdate": true }
126+
"generatorOptions": {
127+
"skipLockFileUpdate": true
128+
}
111129
},
112130
"releaseTagPattern": "v{version}"
113131
},
@@ -118,9 +136,13 @@
118136
"environments": {
119137
"environmentsDir": "tmp/e2e",
120138
"targetNames": ["e2e"],
121-
"inferredTargets": { "e2e": "e2e-test" }
139+
"inferredTargets": {
140+
"e2e": "e2e-test"
141+
}
122142
},
123-
"packages": { "filterByTags": ["publishable"] }
143+
"packages": {
144+
"filterByTags": ["publishable"]
145+
}
124146
}
125147
}
126148
],

0 commit comments

Comments
 (0)