yarn: upgrade to yarn 2
This commit is contained in:
parent
682ca6cecd
commit
3a3caee715
4 changed files with 12058 additions and 7928 deletions
104
.gitignore
vendored
104
.gitignore
vendored
|
@ -1,38 +1,78 @@
|
||||||
|
#------------------#
|
||||||
|
# IDEs and Editors #
|
||||||
|
#------------------#
|
||||||
|
|
||||||
|
# Jetbrains
|
||||||
|
/.idea
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
|
/.vscode
|
||||||
|
|
||||||
|
# Sublime Text
|
||||||
|
*.sublime-*
|
||||||
|
|
||||||
|
#-------------------#
|
||||||
|
# Tools #
|
||||||
|
#-------------------#
|
||||||
|
|
||||||
|
# Vagrant
|
||||||
|
/.vagrant
|
||||||
|
|
||||||
|
#-------------------#
|
||||||
|
# Languages #
|
||||||
|
#-------------------#
|
||||||
|
|
||||||
|
# Node.js
|
||||||
|
/.npm
|
||||||
|
/node_modules
|
||||||
|
npm-debug.log
|
||||||
|
|
||||||
|
.cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
.yarn/*
|
||||||
|
!.yarn/patches
|
||||||
|
!.yarn/releases
|
||||||
|
!.yarn/plugins
|
||||||
|
!.yarn/sdks
|
||||||
|
!.yarn/versions
|
||||||
|
.pnp.*
|
||||||
|
.yarn-integrity
|
||||||
|
yarn-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
|
# PHP
|
||||||
/vendor
|
/vendor
|
||||||
*.DS_Store*
|
.php_cs.cache
|
||||||
|
|
||||||
|
#-------------------#
|
||||||
|
# Operating Systems #
|
||||||
|
#-------------------#
|
||||||
|
|
||||||
|
# External Drives
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
|
||||||
|
# Linux
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Mac OS
|
||||||
|
/.DS_Store
|
||||||
|
*.DS_Store
|
||||||
|
|
||||||
|
# VIM
|
||||||
|
.*.sw[a-p]
|
||||||
|
|
||||||
|
#-------------------#
|
||||||
|
# Project Files #
|
||||||
|
#-------------------#
|
||||||
|
|
||||||
|
# Environment Files
|
||||||
!.env.ci
|
!.env.ci
|
||||||
!.env.dusk
|
!.env.dusk
|
||||||
!.env.example
|
!.env.example
|
||||||
.env*
|
.env*
|
||||||
.vagrant/*
|
|
||||||
.vscode/*
|
|
||||||
storage/framework/*
|
|
||||||
/.idea
|
|
||||||
/nbproject
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
*.log
|
*.log
|
||||||
_ide_helper.php
|
|
||||||
.phpstorm.meta.php
|
|
||||||
.php_cs.cache
|
|
||||||
public/assets/manifest.json
|
|
||||||
|
|
||||||
# For local development with docker
|
|
||||||
# Remove if we ever put the Dockerfile in the repo
|
|
||||||
.dockerignore
|
|
||||||
#Dockerfile
|
|
||||||
docker-compose.yml
|
|
||||||
|
|
||||||
# for image related files
|
|
||||||
misc
|
|
||||||
.phpstorm.meta.php
|
|
||||||
.php_cs.cache
|
|
||||||
|
|
||||||
coverage.xml
|
|
||||||
|
|
||||||
# Vagrant
|
|
||||||
*.log
|
|
||||||
resources/lang/locales.js
|
|
||||||
resources/assets/pterodactyl/scripts/helpers/ziggy.js
|
|
||||||
resources/assets/scripts/helpers/ziggy.js
|
|
||||||
.phpunit.result.cache
|
|
||||||
|
|
55
.yarn/releases/yarn-berry.cjs
vendored
Executable file
55
.yarn/releases/yarn-berry.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
2
.yarnrc.yml
Normal file
2
.yarnrc.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
nodeLinker: 'node-modules'
|
||||||
|
yarnPath: '.yarn/releases/yarn-berry.cjs'
|
Loading…
Reference in a new issue