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

17
node_modules/expo-router/babel.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
let hasWarned = false;
module.exports = (api) => {
return {
name: 'expo-router-babel-deprecated',
visitor: {
Program() {
if (!hasWarned) {
hasWarned = true;
console.warn(
'expo-router/babel is deprecated in favor of babel-preset-expo in SDK 50. To fix the issue, remove "expo-router/babel" from "plugins" in your babel.config.js file.'
);
}
},
},
};
};