mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
* Migrate from npm to pnpm across entire project • Update all GitHub workflow files to use pnpm instead of npm • Replace npm commands with pnpm equivalents in devcontainer scripts • Remove package-lock.json files and update to use pnpm-lock.yaml • Consolidate node version references to use server/.nvmrc * Refine pnpm migration based on review feedback • Replace SKIP_SHARP_FILTERING with SHARP_IGNORE_GLOBAL_LIBVIPS environment variable • Improve Sharp package filtering to include specific Linux architectures for Docker builds • Optimize Dockerfile dependency caching with improved layer structure • Clean up workspace configuration and remove redundant settings * Address additional review feedback for pnpm migration • Fix node-version-file paths in GitHub workflow configurations • Refactor .pnpmfile.cjs to use switch statement for better code organization • Correct cache type typo in fix-format workflow • Simplify Vite configuration by merging configs inline • Update package description for consistency * Use 'server/.nvmrc' for fix-format.yml GHA * Delete npm locks * Remove Docker volume isolation for node_modules directories • Remove volume mounts for node_modules and related directories • Allow shared access between host and container filesystem • Update init container to handle file ownership with conditional existence check * Remove unused Docker volumes and volume mounts • Remove node_modules volume mounts from devcontainer configuration • Remove unused named volumes for pnpm-store, node_modules, and cache directories • Clean up Docker Compose configuration after removing volume isolation * Fix typescript-sdk package issues • Remove unknown "build" dependency that was incorrectly added to package.json • Update pnpm-lock.yaml to reflect dependency removal * Add pnpm setup to mobile workflow for translation formatting • Add pnpm action setup step to mobile unit tests workflow • Required for translation file formatting and sorting operations --------- Co-authored-by: Jason Rasmussen <jason@rasm.me>
50 lines
2.0 KiB
Bash
Executable File
50 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
OPENAPI_GENERATOR_VERSION=v7.12.0
|
|
|
|
# usage: ./bin/generate-open-api.sh
|
|
|
|
function dart {
|
|
rm -rf ../mobile/openapi
|
|
cd ./templates/mobile/serialization/native
|
|
wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
|
|
patch --no-backup-if-mismatch -u native_class.mustache <native_class.mustache.patch
|
|
patch --no-backup-if-mismatch -u native_class.mustache <native_class_nullable_items_in_arrays.patch
|
|
|
|
cd ../../
|
|
wget -O api.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/api.mustache
|
|
patch --no-backup-if-mismatch -u api.mustache <api.mustache.patch
|
|
|
|
cd ../../
|
|
pnpx @openapitools/openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./templates/mobile
|
|
|
|
# Post generate patches
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./patch/api_client.dart.patch
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api.dart <./patch/api.dart.patch
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/pubspec.yaml <./patch/pubspec_immich_mobile.yaml.patch
|
|
# Don't include analysis_options.yaml for the generated openapi files
|
|
# so that language servers can properly exclude the mobile/openapi directory
|
|
rm ../mobile/openapi/analysis_options.yaml
|
|
}
|
|
|
|
function typescript {
|
|
pnpx oazapfts --optimistic --argumentStyle=object --useEnumType immich-openapi-specs.json typescript-sdk/src/fetch-client.ts
|
|
pnpm --filter @immich/sdk install --frozen-lockfile
|
|
pnpm --filter @immich/sdk build
|
|
}
|
|
|
|
# requires server to be built
|
|
(
|
|
cd ..
|
|
SHARP_IGNORE_GLOBAL_LIBVIPS=true pnpm --filter immich build
|
|
pnpm --filter immich sync:open-api
|
|
)
|
|
|
|
if [[ $1 == 'dart' ]]; then
|
|
dart
|
|
elif [[ $1 == 'typescript' ]]; then
|
|
typescript
|
|
else
|
|
dart
|
|
typescript
|
|
fi
|