Skip to content

Commit

Permalink
Upgraded to Yarn Berry
Browse files Browse the repository at this point in the history
Aluminum now uses Yarn 2.x (Berry). This commit adds files necessary for Yarn to run, including a .yarnrc.yml file and the code for Yarn itself. The lockfile has also been updated.

This commit also adds more directories and files to the .gitignore file, as recommended by https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored.

Changes to ensure security and smooth operation of Aluminum with Yarn Berry will likely be committed in the near future.
  • Loading branch information
ZelnickB committed Dec 20, 2020
1 parent 1eab483 commit 7c2802b
Show file tree
Hide file tree
Showing 4 changed files with 1,696 additions and 1,202 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ typings/
# Yarn Integrity file
.yarn-integrity

# Miscellaneous Yarn files

.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

# dotenv environment variables file
.env
.env.test
Expand Down
55 changes: 55 additions & 0 deletions .yarn/releases/yarn-berry.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: ".yarn/releases/yarn-berry.cjs"

0 comments on commit 7c2802b

Please sign in to comment.