Skip to content

Commit 7cb08c2

Browse files
authored
Move to Yarn Workspace (#8151)
Implemented Yarn Workspace
1 parent 476243b commit 7cb08c2

File tree

1,085 files changed

+16428
-21862
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,085 files changed

+16428
-21862
lines changed

.buildkite/jobs/pipeline.android_rn_77.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
- "./scripts/ci.android.sh"
88
key: "android_rn_77"
99
timeout_in_minutes: 90
10-
artifact_paths: "/Users/builder/uibuilder/work/artifacts/**/*"
10+
artifact_paths: "/Users/builder/uibuilder/work/playground/artifacts/**/*"
1111

1212

.buildkite/jobs/pipeline.android_rn_78.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
- "./scripts/ci.android.sh"
88
key: "android"
99
timeout_in_minutes: 90
10-
artifact_paths: "/Users/builder/uibuilder/work/artifacts/**/*"
10+
artifact_paths: "/Users/builder/uibuilder/work/playground/artifacts/**/*"
1111

1212

.buildkite/jobs/pipeline.ios_rn_77.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
- "./scripts/ci.ios.sh"
77
key: "ios_rn_77"
88
timeout_in_minutes: 90
9-
artifact_paths: "/Users/builder/uibuilder/work/artifacts/**/*"
9+
artifact_paths: "/Users/builder/uibuilder/work/playground/artifacts/**/*"
1010

1111

.buildkite/jobs/pipeline.ios_rn_78.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
- "./scripts/ci.ios.sh"
77
key: "ios"
88
timeout_in_minutes: 90
9-
artifact_paths: "/Users/builder/uibuilder/work/artifacts/**/*"
9+
artifact_paths: "/Users/builder/uibuilder/work/playground/artifacts/**/*"
1010

1111

.buildkite/jobs/pipeline.publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@
55
if: "build.pull_request.id == null"
66
command:
77
- "nvm install"
8-
- "npm install"
9-
- "npm run release"
10-
depends_on:
11-
- ios
12-
- android
8+
- "./scripts/ci.sh"
9+
- "yarn run release"
1310
timeout_in_minutes: 90
1411

1512

.gitignore

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,13 @@ android/app/libs
220220
android/keystores/debug.keystore
221221
AndroidE2E/.project
222222
AndroidE2E/app/.project
223-
lib/android/.project
223+
android/.project
224224
playground/android/.project
225225
AndroidE2E/app/.classpath
226226
AndroidE2E/app/.settings/
227227
AndroidE2E/app/bin/
228-
lib/android/.settings/
229-
lib/android/app/.settings/
228+
android/.settings/
229+
android/app/.settings/
230230
playground/android/.settings/
231231
playground/android/app/.settings/
232232
AndroidE2E/.settings/
@@ -238,10 +238,18 @@ website/package-lock.json
238238
artifacts/
239239

240240
# Navigation mocks
241-
lib/Mock/*.js
242-
lib/Mock/*.d.ts
241+
lib/*
243242
Mock.js
244243
Mock.d.ts
245244

246245
Gemfile.lock
247246
/playground/ios/.xcode.env.local
247+
248+
# Yarn
249+
.yarn/*
250+
!.yarn/patches
251+
!.yarn/plugins
252+
!.yarn/releases
253+
!.yarn/sdks
254+
!.yarn/versions
255+

.yarnrc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
nmHoistingLimits: workspaces
3+

Mock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './lib/Mock';
1+
export * from './Mock';

0 commit comments

Comments
 (0)