mirror of
https://github.com/immich-app/immich.git
synced 2024-12-22 01:47:08 +02:00
Fixed Docker and Fastlane build issue
This commit is contained in:
parent
e407a4fa13
commit
31c18ff34c
@ -18,9 +18,9 @@ default_platform(:ios)
|
|||||||
platform :ios do
|
platform :ios do
|
||||||
desc "iOS deployment"
|
desc "iOS deployment"
|
||||||
lane :beta do
|
lane :beta do
|
||||||
increment_version_number(
|
# increment_version_number(
|
||||||
version_number: "1.3.0" # Set a specific version number
|
# version_number: "1.3.0"
|
||||||
)
|
# )
|
||||||
increment_build_number({
|
increment_build_number({
|
||||||
build_number: latest_testflight_build_number + 1
|
build_number: latest_testflight_build_number + 1
|
||||||
})
|
})
|
||||||
|
1099
server/package-lock.json
generated
1099
server/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -43,7 +43,6 @@
|
|||||||
"class-validator": "^0.13.2",
|
"class-validator": "^0.13.2",
|
||||||
"dotenv": "^14.2.0",
|
"dotenv": "^14.2.0",
|
||||||
"exifr": "^7.1.3",
|
"exifr": "^7.1.3",
|
||||||
"fluent-ffmpeg": "^2.1.2",
|
|
||||||
"joi": "^17.5.0",
|
"joi": "^17.5.0",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"passport": "^0.5.2",
|
"passport": "^0.5.2",
|
||||||
@ -53,26 +52,23 @@
|
|||||||
"reflect-metadata": "^0.1.13",
|
"reflect-metadata": "^0.1.13",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"rxjs": "^7.2.0",
|
"rxjs": "^7.2.0",
|
||||||
"sharp": "0.28",
|
|
||||||
"socket.io-redis": "^6.1.1",
|
"socket.io-redis": "^6.1.1",
|
||||||
"systeminformation": "^5.11.0",
|
"systeminformation": "^5.11.0",
|
||||||
"typeorm": "^0.2.41"
|
"typeorm": "^0.2.41"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nestjs/cli": "^8.0.0",
|
"@nestjs/cli": "^8.2.4",
|
||||||
"@nestjs/schematics": "^8.0.0",
|
"@nestjs/schematics": "^8.0.0",
|
||||||
"@nestjs/testing": "^8.0.0",
|
"@nestjs/testing": "^8.0.0",
|
||||||
"@types/bcrypt": "^5.0.0",
|
"@types/bcrypt": "^5.0.0",
|
||||||
"@types/bull": "^3.15.7",
|
"@types/bull": "^3.15.7",
|
||||||
"@types/express": "^4.17.13",
|
"@types/express": "^4.17.13",
|
||||||
"@types/fluent-ffmpeg": "^2.1.20",
|
|
||||||
"@types/imagemin": "^8.0.0",
|
"@types/imagemin": "^8.0.0",
|
||||||
"@types/jest": "27.0.2",
|
"@types/jest": "27.0.2",
|
||||||
"@types/lodash": "^4.14.178",
|
"@types/lodash": "^4.14.178",
|
||||||
"@types/multer": "^1.4.7",
|
"@types/multer": "^1.4.7",
|
||||||
"@types/node": "^16.0.0",
|
"@types/node": "^16.0.0",
|
||||||
"@types/passport-jwt": "^3.0.6",
|
"@types/passport-jwt": "^3.0.6",
|
||||||
"@types/sharp": "^0.29.5",
|
|
||||||
"@types/supertest": "^2.0.11",
|
"@types/supertest": "^2.0.11",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
||||||
"@typescript-eslint/parser": "^5.0.0",
|
"@typescript-eslint/parser": "^5.0.0",
|
||||||
|
@ -1,15 +1,7 @@
|
|||||||
import { InjectQueue, Process, Processor } from '@nestjs/bull';
|
import { Processor } from '@nestjs/bull';
|
||||||
import { InjectRepository } from '@nestjs/typeorm';
|
import { InjectRepository } from '@nestjs/typeorm';
|
||||||
import { Job, Queue } from 'bull';
|
|
||||||
import { Repository } from 'typeorm';
|
import { Repository } from 'typeorm';
|
||||||
import { AssetEntity } from '../../api-v1/asset/entities/asset.entity';
|
import { AssetEntity } from '../../api-v1/asset/entities/asset.entity';
|
||||||
import sharp from 'sharp';
|
|
||||||
import { existsSync, mkdirSync, readFile } from 'fs';
|
|
||||||
import { ConfigService } from '@nestjs/config';
|
|
||||||
import ffmpeg from 'fluent-ffmpeg';
|
|
||||||
import { APP_UPLOAD_LOCATION } from '../../constants/upload_location.constant';
|
|
||||||
import { WebSocketServer } from '@nestjs/websockets';
|
|
||||||
import { Socket, Server as SocketIoServer } from 'socket.io';
|
|
||||||
import { CommunicationGateway } from '../../api-v1/communication/communication.gateway';
|
import { CommunicationGateway } from '../../api-v1/communication/communication.gateway';
|
||||||
import { BackgroundTaskService } from '../background-task/background-task.service';
|
import { BackgroundTaskService } from '../background-task/background-task.service';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user