Skip to content

Commit 4da9a6f

Browse files
committed
chore: Standardize package.json formatting and add default formatter for JSON
- Consolidate workspaces array formatting in root package.json for consistency - Update tailwindCSS classAttributes in .vscode/settings.json to maintain formatting - Streamline files array in medusa-forms package.json for improved readability These changes enhance the consistency and maintainability of configuration files across the project.
1 parent cd7158f commit 4da9a6f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@
2222
"source.fixAll.biome": "explicit",
2323
"source.organizeImports.biome": "explicit"
2424
},
25-
"tailwindCSS.classAttributes": ["class", "className", "ngClass", "class:list", "wrapperClassName"]
25+
"tailwindCSS.classAttributes": ["class", "className", "ngClass", "class:list", "wrapperClassName"],
26+
"[json]": {
27+
"editor.defaultFormatter": "biomejs.biome"
28+
}
2629
}

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"name": "medusa-forms",
33
"version": "0.1.1",
44
"private": true,
5-
"workspaces": [
6-
"apps/*",
7-
"packages/*"
8-
],
5+
"workspaces": ["apps/*", "packages/*"],
96
"scripts": {
107
"start": "yarn dev",
118
"dev": "turbo run dev",

packages/medusa-forms/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"main": "./dist/cjs/index.cjs",
55
"module": "./dist/esm/index.js",
66
"types": "./dist/types/index.d.ts",
7-
"files": [
8-
"dist"
9-
],
7+
"files": ["dist"],
108
"exports": {
119
".": {
1210
"import": {

0 commit comments

Comments
 (0)