Skip to content

Commit

Permalink
chore: Upgrade to Yarn 3+
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Jul 31, 2023
1 parent 1999a01 commit d0164fa
Show file tree
Hide file tree
Showing 4 changed files with 9,266 additions and 6,129 deletions.
28 changes: 23 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,35 @@
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
# Ignore bundler config
/.bundle

# Ignore all logfiles and tempfiles.
# Ignore all logfiles and tempfiles
/log/*
/tmp/*
!/log/.keep
/tmp
/spec/examples.txt
!/tmp/.keep

# Ignore pidfiles, but keep the directory
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep

# Ignore local build artifacts
/coverage
/deploy
/node_modules
/public/assets
/spec/examples.txt

# Ignore node modules and PNP
/.pnp.*
/.yarn/*
/node_modules
/deploy
!/.yarn/patches
!/.yarn/plugins
!/.yarn/sdks
!/.yarn/versions

# Ignore env-overrides for configs
config/hutch.*.yml
3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# vim: ft=yaml

nodeLinker: node-modules
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,10 @@
},
"browserslist": [
"last 1 chrome versions"
]
],
"engines": {
"node": "^18.0",
"yarn": "3.6.1"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit d0164fa

Please sign in to comment.