Skip to content

Commit

Permalink
chore: fix some npm
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Sep 25, 2024
1 parent 4a438be commit a1348ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pnpm run --filter @argos/backend db:truncate && pnpm run --filter @argos/backend
## Develop

```sh
npm run dev
pnpm run dev
```

## Run E2E locally
Expand All @@ -119,13 +119,13 @@ npx playwright install --with-deps
Run E2E setup:

```
npm run e2e:setup
pnpm run e2e:setup
```

Run E2E in debug mode:

```
npm run e2e:start -- --debug
pnpm run e2e:start -- --debug
```

## GraphQL
Expand Down Expand Up @@ -175,7 +175,7 @@ NODE_ENV=test pnpm run --filter @argos/backend db:reset
## Coding style

Please follow the coding style of the current code base. argos uses eslint, so if possible, enable linting in your editor to get realtime feedback.
Linting can be run manually with `npm run lint`.
Linting can be run manually with `pnpm run lint`.

Finally, when you submit a pull request, linting is run again by Continuous Integration testing, but hopefully by then your code is already clean!

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"check-types": "turbo run check-types",
"check-format": "turbo run check-format",
"format": "prettier --write .",
"heroku-postbuild": "BUILD_MODE=production npm run build",
"heroku-postbuild": "BUILD_MODE=production pnpm run build",
"codegen": "NODE_TLS_REJECT_UNAUTHORIZED=0 graphql-codegen --config codegen.ts",
"watch-codegen": "npm run codegen -- --watch",
"watch-codegen": "pnpm run codegen -- --watch",
"knip": "knip --tags=-route"
},
"repository": "github:argos-ci/argos",
Expand Down

0 comments on commit a1348ac

Please sign in to comment.