Skip to content

Commit

Permalink
Lexical playground builds with BUCK
Browse files Browse the repository at this point in the history
Summary: To simplify working on Lexical, the Playground app that's part of the open source Lexical repository now builds internally with Buck as well. Having only one playground app will be greatly beneficial from a maintenance perspective.

Differential Revision: D52661902

fbshipit-source-id: 19e96072ffab164c16291363adbe586d03b3f2f9
  • Loading branch information
Amy Worrall authored and facebook-github-bot committed Jan 11, 2024
1 parent 4601cb5 commit 6ac6b4b
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Playground/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
!*.xcodeproj/
!*.xcworkspace/
!LexicalPlayground.xcodeproj/
!LexicalPlayground.xcworkspace/

56 changes: 56 additions & 0 deletions Playground/Info-MetaInternal.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.facebook.lexicalplayground</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>LexicalPlayground</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>UIStatusBarTintParameters</key>
<dict>
<key>UINavigationBar</key>
<dict>
<key>Style</key>
<string>UIBarStyleDefault</string>
<key>Translucent</key>
<false/>
</dict>
</dict>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>MinimumOSVersion</key>
<string>15.0</string>
</dict>
</plist>

0 comments on commit 6ac6b4b

Please sign in to comment.