react-native-kenburns-view 5.1.1 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +6 -4
  3. package/lib/KenBurnsView.js +57 -35
  4. package/package.json +1 -4
  5. package/example/kenburns-example/App.js +0 -78
  6. package/example/kenburns-example/README.md +0 -20
  7. package/example/kenburns-example/app.json +0 -21
  8. package/example/kenburns-example/babel.config.js +0 -6
  9. package/example/kenburns-example/ios/.xcode.env +0 -11
  10. package/example/kenburns-example/ios/KenBurnsExample/AppDelegate.swift +0 -69
  11. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
  12. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/Contents.json +0 -14
  13. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/Contents.json +0 -6
  14. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/SplashScreenBackground.colorset/Contents.json +0 -20
  15. package/example/kenburns-example/ios/KenBurnsExample/Info.plist +0 -76
  16. package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample-Bridging-Header.h +0 -3
  17. package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample.entitlements +0 -5
  18. package/example/kenburns-example/ios/KenBurnsExample/PrivacyInfo.xcprivacy +0 -48
  19. package/example/kenburns-example/ios/KenBurnsExample/SplashScreen.storyboard +0 -39
  20. package/example/kenburns-example/ios/KenBurnsExample/Supporting/Expo.plist +0 -12
  21. package/example/kenburns-example/ios/KenBurnsExample.xcodeproj/project.pbxproj +0 -544
  22. package/example/kenburns-example/ios/KenBurnsExample.xcodeproj/xcshareddata/xcschemes/KenBurnsExample.xcscheme +0 -88
  23. package/example/kenburns-example/ios/KenBurnsExample.xcworkspace/contents.xcworkspacedata +0 -10
  24. package/example/kenburns-example/ios/Podfile +0 -63
  25. package/example/kenburns-example/ios/Podfile.lock +0 -2195
  26. package/example/kenburns-example/ios/Podfile.properties.json +0 -4
  27. package/example/kenburns-example/metro.config.js +0 -20
  28. package/example/kenburns-example/package-lock.json +0 -7160
  29. package/example/kenburns-example/package.json +0 -25
@@ -1,4 +0,0 @@
1
- {
2
- "expo.jsEngine": "hermes",
3
- "EX_DEV_CLIENT_NETWORK_INSPECTOR": "true"
4
- }
@@ -1,20 +0,0 @@
1
- const path = require('path');
2
- const { getDefaultConfig } = require('expo/metro-config');
3
-
4
- const projectRoot = __dirname;
5
- const monorepoRoot = path.resolve(projectRoot, '../..');
6
-
7
- /** @type {import('expo/metro-config').MetroConfig} */
8
- const config = getDefaultConfig(projectRoot);
9
-
10
- // Resolve react-native-kenburns-view from the repo root (file:../..)
11
- config.watchFolders = [monorepoRoot];
12
- config.resolver.nodeModulesPaths = [
13
- path.resolve(projectRoot, 'node_modules'),
14
- path.resolve(monorepoRoot, 'node_modules'),
15
- ];
16
- config.resolver.extraNodeModules = {
17
- 'react-native-kenburns-view': monorepoRoot,
18
- };
19
-
20
- module.exports = config;