Skip to content

Commit

Permalink
chore: add yarn release
Browse files Browse the repository at this point in the history
  • Loading branch information
hellohublot committed Jan 19, 2024
1 parent c5bb4d0 commit f3fd9d5
Show file tree
Hide file tree
Showing 6 changed files with 1,482 additions and 9 deletions.
34 changes: 28 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@
# XDE
.expo/

web-build/

# VSCode
.vscode/
.history/

jsconfig.json

# Xcode
Expand All @@ -35,13 +31,24 @@ project.xcworkspace

# Android/IJ
#
.idea
.classpath
.cxx
.gradle
.idea
.project
.settings
local.properties
android.iml

# Cocoapods
#
example/ios/Pods

# Ruby
example/vendor/

# node.js
#
.yarn
node_modules/
npm-debug.log
yarn-debug.log
Expand All @@ -53,5 +60,20 @@ buck-out/
android/app/libs
android/keystores/debug.keystore

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Expo
.expo/

# Turborepo
.turbo/

# generated by bob
lib/

541 changes: 541 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Large diffs are not rendered by default.

874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.1.cjs

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
nodeLinker: node-modules
nmHoistingLimits: workspaces

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"

yarnPath: .yarn/releases/yarn-3.6.1.cjs
5 changes: 2 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
"metro-react-native-babel-preset": "0.76.8",
"pod-install": "^0.1.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.0.0"
},
"node": ">=16"
}
}

0 comments on commit f3fd9d5

Please sign in to comment.