You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,17 +106,17 @@ To help you with assets, you can run the following commands in a specific packag
106
106
-`pnpm run test:unit`: run the unit tests from the package
107
107
-`pnpm run test:browser`: run the browser tests from the package in a headless browser
108
108
-`pnpm run test:browser:ui`: run the browser tests from the package in interactive mode, allowing you to see the tests running in a browser window and debug them if needed
109
-
-`pnpm run check`: run the formatter, linter, and sort imports, and fail if any modifications are needed
110
-
-`pnpm run check --write`: run the formatter, linter, and import sorting, and write modifications
111
109
112
110
Thanks to [PNPM Workspaces](https://pnpm.io/workspaces), you can also run these commands from the root directory of the project:
113
111
114
112
-`pnpm run build`: build (compile) assets from **all** packages
115
113
-`pnpm run test`: run the tests from **all** packages
116
114
-`pnpm run test:unit`: run the unit tests from **all** packages
117
115
-`pnpm run test:browser`: run the browser tests from **all** packages in a headless browser
118
-
-`pnpm run check`: run the formatter, linter, and sort imports for **all** packages, and fail if any modifications are needed
119
-
-`pnpm run check --write`: run the formatter, linter, and import sorting for **all** packages, and write modifications
116
+
-`pnpm run fmt:check`: run the code formatter for **all** packages, and **fail** if any modifications are needed
117
+
-`pnpm run fmt`: run the code formatter for **all** packages, and **write** modifications
118
+
-`pnpm run lint`: run the linter for **all** packages
119
+
-`pnpm run lint:fix`: run the linter for **all** packages, and **fix** any fixable issues
120
120
121
121
> [!IMPORTANT]
122
122
> Always run `pnpm run build` before committing your changes to ensure assets are properly compiled.
0 commit comments