mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-16 08:08:18 +00:00
Removes bunx from the list of prohibited package managers in Copilot instructions, allowing its use alongside bun. Updates VS Code terminal configuration to use the modern profiles format instead of deprecated shell settings for better Windows compatibility. Fixes EAS build cache key syntax by removing incorrect dash separator in checksum function calls across all build profiles.
116 lines
3.0 KiB
JSON
116 lines
3.0 KiB
JSON
{
|
|
"cli": {
|
|
"version": ">= 9.1.0"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"resourceClass": "medium",
|
|
"cache": {
|
|
"key": "development-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
},
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"development_tv": {
|
|
"resourceClass": "medium",
|
|
"cache": {
|
|
"key": "development-tv-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
},
|
|
"env": {
|
|
"EXPO_TV": "1",
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"development-simulator": {
|
|
"resourceClass": "medium",
|
|
"cache": {
|
|
"key": "development-simulator-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"simulator": true
|
|
},
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"preview": {
|
|
"resourceClass": "large",
|
|
"cache": {
|
|
"key": "preview-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"distribution": "internal",
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"production": {
|
|
"resourceClass": "large",
|
|
"cache": {
|
|
"key": "production-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "production",
|
|
"channel": "0.36.0",
|
|
"android": {
|
|
"buildType": "app-bundle",
|
|
"image": "latest"
|
|
},
|
|
"ios": {
|
|
"image": "latest"
|
|
}
|
|
},
|
|
"production-apk": {
|
|
"resourceClass": "large",
|
|
"cache": {
|
|
"key": "production-apk-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "production",
|
|
"channel": "0.36.0",
|
|
"android": {
|
|
"buildType": "apk",
|
|
"image": "latest"
|
|
}
|
|
},
|
|
"production-apk-tv": {
|
|
"resourceClass": "large",
|
|
"cache": {
|
|
"key": "production-apk-tv-{{ checksum \"bun.lock\" \"package.json\" }}",
|
|
"paths": ["~/.bun/install/cache", "node_modules", ".expo"]
|
|
},
|
|
"environment": "production",
|
|
"channel": "0.36.0",
|
|
"android": {
|
|
"buildType": "apk",
|
|
"image": "latest"
|
|
},
|
|
"env": {
|
|
"EXPO_TV": "1"
|
|
}
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {}
|
|
}
|
|
}
|