first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

12
node_modules/expo-image/plugin/build/withExpoImage.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const config_plugins_1 = require("expo/config-plugins");
const pkg = require('../../package.json');
const withExpoImage = (config, props) => {
const disableLibdav1d = props?.disableLibdav1d ?? false;
return (0, config_plugins_1.withPodfileProperties)(config, (config) => {
config.modResults['expo-image.disable-libdav1d'] = disableLibdav1d ? 'true' : 'false';
return config;
});
};
exports.default = (0, config_plugins_1.createRunOncePlugin)(withExpoImage, pkg.name, pkg.version);