Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test --reporter=verbose
- run: ./node_modules/.bin/vitest --reporter=verbose
env:
CI_OS: ${{ runner.os }}

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: ./node_modules/.bin/rimraf lib && ./node_modules/.bin/tsc -p tsconfig.build.json --sourceMap --declaration
- name: Install only production dependencies
run: npm ci --omit=dev
- run: node bin/repomix.cjs
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@
"bin": "./bin/repomix.cjs",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.build.json --sourceMap --declaration",
"lint": "npm run lint-biome && npm run lint-ts && npm run lint-secretlint",
"build": "node --run clean && tsc -p tsconfig.build.json --sourceMap --declaration",
"lint": "node --run lint-biome && node --run lint-ts && node --run lint-secretlint",
"lint-biome": "biome check --write",
"lint-ts": "tsc --noEmit",
"lint-secretlint": "secretlint \"**/*\" --secretlintignore .gitignore",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"repomix": "npm run build && node --trace-warnings bin/repomix.cjs",
"repomix-src": "npm run repomix -- --include 'src,tests'",
"repomix-website": "npm run repomix -- --include 'website'",
"repomix": "node --run build && node --trace-warnings bin/repomix.cjs",
"repomix-src": "node --run repomix -- --include 'src,tests'",
"repomix-website": "node --run repomix -- --include 'website'",
"website": "docker compose -f website/compose.yml up --build",
"website-generate-schema": "tsx website/client/scripts/generateSchema.ts",
"npm-publish": "npm run npm-publish-check-branch && npm run lint && npm run test-coverage && npm run build && npm publish",
"npm-publish": "node --run npm-publish-check-branch && node --run lint && node --run test-coverage && node --run build && npm publish",
"npm-publish-check-branch": "git branch --show-current | grep -q '^main$' || (echo 'Release is only allowed from the main branch' && exit 1)",
"npm-release-patch": "npm version patch && npm run npm-publish",
"npm-release-minor": "npm version minor && npm run npm-publish",
"npm-release-prerelease": "npm version prerelease && npm run npm-publish"
"npm-release-patch": "npm version patch && node --run npm-publish",
"npm-release-minor": "npm version minor && node --run npm-publish",
"npm-release-prerelease": "npm version prerelease && node --run npm-publish"
},
"keywords": [
"repository",
Expand Down
Loading