Skip to content

Commit

Permalink
fix: thank you prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Jan 20, 2024
1 parent 8d06ff7 commit c0bdec2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
${{ runner.OS }}-
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm test
- name: Coverage
uses: coverallsapp/[email protected]
Expand Down
26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,25 @@
"name": "nest-raven",
"version": "10.0.1",
"description": "Sentry Raven Module for Nest Framework",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"format": "prettier \"{example,lib,test}/**/*.ts\" --write",
"lint": "prettier \"{example,lib,test}/**/*.ts\" --check",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mentos1386/nest-raven.git"
},
"keywords": ["nestjs", "nest", "raven", "sentry", "module"],
"keywords": [
"nestjs",
"nest",
"raven",
"sentry",
"module"
],
"author": "Tine Jozelj",
"license": "MIT",
"bugs": {
Expand Down Expand Up @@ -46,17 +52,17 @@
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": ["lib/**"]
"collectCoverageFrom": [
"lib/**"
]
},
"lint-staged": {
"*.ts": ["biome check"]
"*.ts": [
"biome check"
]
},
"optionalDependencies": {
"@nestjs/graphql": "^11.0.0 || ^12.0.0"
Expand Down

0 comments on commit c0bdec2

Please sign in to comment.