Skip to content

Commit

Permalink
chore: update build and test commands in package.json
Browse files Browse the repository at this point in the history
Updated the `build` and `test:ci` scripts in the `package.json` to specify targets explicitly. The `build` script now includes 'server', 'client', and 'nuxt' as build targets, and the `test:ci` script has been adjusted to run tests specifically for these targets. These changes ensure that our CI process is correctly building and testing the relevant parts of our application, aligning with our current project structure and integration needs.
  • Loading branch information
shorwood committed Sep 24, 2024
1 parent 104e5fc commit aa860d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
},
"scripts": {
"dev": "uncli build --watch true",
"build": "uncli build",
"build": "uncli build server client nuxt",
"lint": "DEBUG=eslint:eslint eslint --cache",
"lint:ci": "eslint --cache --ignore-pattern examples",
"lint:fix": "DEBUG=eslint:eslint eslint --fix --cache",
"test": "vitest --watch",
"test:ci": "vitest --run",
"test:ci": "vitest --run server client nuxt",
"test:ui": "vitest --ui",
"test:types": "vitest --typecheck",
"test:coverage": "vitest --coverage",
Expand Down

0 comments on commit aa860d8

Please sign in to comment.