Skip to content

Commit

Permalink
migrate to yarn 3
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Nov 16, 2021
1 parent d0649ec commit c397a98
Show file tree
Hide file tree
Showing 15 changed files with 32,199 additions and 22,242 deletions.
10 changes: 5 additions & 5 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def uiTestPipeline(ctx, filterTags, early_fail, runPart = 1, numberOfParts = 1,
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"cp -r tests/acceptance/filesForUpload/* /uploads",
"yarn install --frozen-lockfile",
"yarn install --immutable",
"yarn build",
"./tests/acceptance/run.sh",
],
Expand Down Expand Up @@ -685,10 +685,10 @@ def accountsUITests(ctx, storage = "ocis", accounts_hash_difficulty = 4):
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"cp -r tests/acceptance/filesForUpload/* /uploads",
"yarn install --frozen-lockfile",
"yarn install --immutable",
"yarn build",
"cd /drone/src/accounts",
"yarn install --frozen-lockfile",
"yarn install --immutable",
"make test-acceptance-webui",
],
"volumes": [stepVolumeOC10Tests] +
Expand Down Expand Up @@ -749,9 +749,9 @@ def settingsUITests(ctx, storage = "ocis", accounts_hash_difficulty = 4):
"cp -r /srv/app/web/tests/acceptance/filesForUpload/* /uploads",
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"yarn install --frozen-lockfile",
"yarn install --immutable",
"cd /drone/src/settings",
"yarn install --frozen-lockfile",
"yarn install --immutable",
"make test-acceptance-webui",
],
"volumes": [stepVolumeOC10Tests] +
Expand Down
17 changes: 17 additions & 0 deletions accounts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# yarn2 with Zero-Installs: https://yarnpkg.com/features/zero-installs
#.yarn/*
#!.yarn/cache
#!.yarn/patches
#!.yarn/plugins
#!.yarn/releases
#!.yarn/sdks
#!.yarn/versions

# yarn2 not using Zero-Installs: https://yarnpkg.com/features/zero-installs
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
768 changes: 768 additions & 0 deletions accounts/.yarn/releases/yarn-3.1.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions accounts/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.1.0.cjs
2 changes: 1 addition & 1 deletion accounts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ yarn-build: node_modules

.PHONY: node_modules
node_modules:
yarn install --frozen-lockfile
yarn install --immutable

############ protobuf ############
PROTO_VERSION := v0
Expand Down
3 changes: 2 additions & 1 deletion accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,6 @@
},
"peerDependencies": {
"owncloud-design-system": "^11.0.0"
}
},
"packageManager": "[email protected]"
}
20,040 changes: 11,524 additions & 8,516 deletions accounts/yarn.lock

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions idp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# yarn2 with Zero-Installs: https://yarnpkg.com/features/zero-installs
#.yarn/*
#!.yarn/cache
#!.yarn/patches
#!.yarn/plugins
#!.yarn/releases
#!.yarn/sdks
#!.yarn/versions

# yarn2 not using Zero-Installs: https://yarnpkg.com/features/zero-installs
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
768 changes: 768 additions & 0 deletions idp/.yarn/releases/yarn-3.1.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions idp/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.1.0.cjs
2 changes: 1 addition & 1 deletion idp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ yarn-build: node_modules

.PHONY: node_modules
node_modules:
yarn install --frozen-lockfile
yarn install --immutable
Loading

0 comments on commit c397a98

Please sign in to comment.