mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
chore(cli): clean up files (#7955)
This commit is contained in:
parent
31f7e1aca3
commit
2080aeee4d
3 changed files with 9 additions and 21 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -91,17 +91,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
- name: Run setup typescript-sdk
|
- name: Setup typescript-sdk
|
||||||
run: npm ci && npm run build
|
run: npm ci && npm run build
|
||||||
working-directory: ./open-api/typescript-sdk
|
working-directory: ./open-api/typescript-sdk
|
||||||
|
|
||||||
- name: Run npm install (cli)
|
- name: Install deps
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: Run npm install (server)
|
|
||||||
run: npm ci
|
|
||||||
working-directory: ./server
|
|
||||||
|
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
|
|
|
@ -1,11 +1,15 @@
|
||||||
**/*.spec.js
|
**/*.spec.js
|
||||||
|
coverage/**
|
||||||
|
src/**
|
||||||
upload/**
|
upload/**
|
||||||
.editorconfig
|
.editorconfig
|
||||||
.eslintignore
|
.eslintignore
|
||||||
.eslintrc.js
|
.eslintrc.cjs
|
||||||
|
.gitignore
|
||||||
.prettierignore
|
.prettierignore
|
||||||
.prettierrc
|
.prettierrc
|
||||||
|
Dockerfile
|
||||||
package-lock.json
|
package-lock.json
|
||||||
testSetup.js
|
|
||||||
tsconfig.json
|
tsconfig.json
|
||||||
tsconfig.build.json
|
vite.config.ts
|
||||||
|
vitest.config.ts
|
||||||
|
|
|
@ -15,19 +15,7 @@
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"rootDirs": ["src", "../server/src"],
|
|
||||||
"baseUrl": "./",
|
"baseUrl": "./",
|
||||||
"paths": {
|
|
||||||
"@test": ["../server/test"],
|
|
||||||
"@test/*": ["../server/test/*"],
|
|
||||||
"@test-utils": ["../server/src/test-utils/utils"],
|
|
||||||
"@app/immich": ["../server/src/immich"],
|
|
||||||
"@app/immich/*": ["../server/src/immich/*"],
|
|
||||||
"@app/infra": ["../server/src/infra"],
|
|
||||||
"@app/infra/*": ["../server/src/infra/*"],
|
|
||||||
"@app/domain": ["../server/src/domain"],
|
|
||||||
"@app/domain/*": ["../server/src/domain/*"]
|
|
||||||
},
|
|
||||||
"types": ["vitest/globals"]
|
"types": ["vitest/globals"]
|
||||||
},
|
},
|
||||||
"exclude": ["dist", "node_modules"]
|
"exclude": ["dist", "node_modules"]
|
||||||
|
|
Loading…
Reference in a new issue