Skip to content

Commit

Permalink
build(yarn): 🛠️ Update yarn to version 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed May 24, 2023
1 parent 990d11a commit a77685f
Show file tree
Hide file tree
Showing 12 changed files with 1,109 additions and 491 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
1 change: 1 addition & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
873 changes: 873 additions & 0 deletions .yarn/releases/yarn-3.5.1.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ supportedArchitectures:
- current
os:
- current

yarnPath: .yarn/releases/yarn-3.5.1.cjs
1 change: 1 addition & 0 deletions apps/strapi-app/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
200 changes: 200 additions & 0 deletions apps/strapi-app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ $RECYCLE.BIN/
*.swm
*.out
*.pid
*.seed
*.pid.lock
*.suo
*.ntvs*
*.njsproj
*.sln

# Output of 'npm pack'
*.tgz


############################
Expand All @@ -67,6 +76,11 @@ $RECYCLE.BIN/

.tmp
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
*.sql
*.sqlite
*.sqlite3
Expand All @@ -83,6 +97,7 @@ nbproject
public/uploads/*
!public/uploads/.gitkeep


############################
# Node.js
############################
Expand All @@ -95,12 +110,169 @@ results
node_modules
.node_history

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Optional REPL history
.node_repl_history

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Optional npm cache directory
.npm

# Yarn Integrity file
.yarn-integrity

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*


############################
# Builders
############################

# Vercel folder
.vercel

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Turbo Repo
.turbo

# Local Netlify
.netlify

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# Dependency directories
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/


############################
# Tests
############################

testApp

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output


############################
# Frameworks
############################

# Next.js build output
.next
out

# Next PWA
**/public/precache.*.*.js
**/public/sw.js
**/public/workbox-*.js
**/public/worker-*.js
**/public/fallback-*.js
**/public/precache.*.*.js.map
**/public/sw.js.map
**/public/workbox-*.js.map
**/public/worker-*.js.map
**/public/fallback-*.js

# Next Sitemap
**/public/robots.txt
**/public/sitemap.xml
**/public/sitemap-0.xml

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus


############################
# Extras
############################

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# Sentry
.sentryclirc

# Storybook Build
storybook-static

# TypeScript cache
*.tsbuildinfo


############################
# Environment Variables
############################

.env
.env.development
.env.production
.env.local
.env.development.local
.env.production.local
.env.test.local


############################
# Strapi
Expand All @@ -113,3 +285,31 @@ exports
dist
build
.strapi-updater.json


############################
# Locals
############################

# Editor directories and files
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json

# Changeset files
.netrc

# Optional prettier cache
.prettiercache

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Optional cspell cache
.cspellcache

# Extras(if any)
!monorepo.code-workspace
1 change: 1 addition & 0 deletions apps/strapi-app/.markdownlintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"public",
"CHANGELOG.md",
"pnpm-lock.yaml",
".yarn",
"project-words.txt"
]
}
1 change: 1 addition & 0 deletions packages/strapi-plugin-uno/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
1 change: 1 addition & 0 deletions packages/strapi-plugin-uno/.markdownlintignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ build/Release
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*


Expand Down
Loading

0 comments on commit a77685f

Please sign in to comment.