Skip to content

Commit

Permalink
build(yarn): upgrade to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
No-Cash-7970 committed Jan 8, 2024
1 parent f635a7d commit 0c14a18
Show file tree
Hide file tree
Showing 6 changed files with 14,890 additions and 10,780 deletions.
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
# dependencies
/node_modules
/.pnp
.pnp.js
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# testing
/coverage
Expand Down Expand Up @@ -35,6 +41,8 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts
/test-results/

# Playwright
/playwright-report/
/playwright/.cache/

Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ your own computer that does not rely on an external website.
PowerShell or Command Prompt
- [Node.js](https://nodejs.org/en) version 18.18.0 or higher installed. Version
20.0.0 or higher is recommended.
- [Yarn](https://yarnpkg.com/getting-started/install) package manager installed
- [Yarn 4+](https://yarnpkg.com/getting-started/install) package manager installed

### Installing the local setup

Expand Down
2 changes: 1 addition & 1 deletion docs/DEVELOPERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This is documentation contains information useful for developers.
PowerShell or Command Prompt
- [Git](https://git-scm.com/) installed
- [Node.js](https://nodejs.org/en) version 18.0.0 or higher installed
- [Yarn](https://yarnpkg.com/getting-started/install) package manager installed
- [Yarn 4+](https://yarnpkg.com/getting-started/install) package manager installed
- (OPTIONAL BUT RECOMMENDED) [Visual Studio Code](https://code.visualstudio.com/)
IDE (integrated development environment)

Expand Down
97 changes: 46 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,83 +4,77 @@
"private": true,
"scripts": {
"compile-locales": "gulp compileLocales --no-color",
"predev": "gulp prebuild",
"dev": "next dev",
"prebuild": "gulp prebuild",
"build": "next build",
"dev": "gulp prebuild && next dev",
"build": "gulp prebuild && next build",
"start": "next start",
"lint": "next lint --ext .js --ext .mjs --ext .cjs --ext .jsx --ext .ts --ext .mts --ext .cts --ext .tsx --ext .yml --ext .yaml",
"preprod": "yarn build",
"prod": "next start",
"release": "release-it --ci",
"postrelease": "gulp postRelease",
"prod": "yarn build && next start",
"release": "release-it --ci && gulp postRelease",
"test": "jest --watch",
"test:ci": "jest --ci",
"pretest:e2e": "yarn compile-locales",
"test:e2e": "playwright test",
"preinstall:dev": "yarn install",
"install:dev": "gulp installDev"
"test:e2e": "yarn compile-locales && playwright test",
"install:dev": "yarn install && gulp installDev"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "5.0.1",
"@blockshake/defly-connect": "^1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@perawallet/connect": "^1.3.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-toast": "^1.1.5",
"@randlabs/myalgo-connect": "^1.4.2",
"@tabler/icons-react": "^2.26.0",
"@tailwindcss/typography": "^0.5.9",
"@txnlab/use-wallet": "^2.1.3",
"@tabler/icons-react": "^2.45.0",
"@tailwindcss/typography": "^0.5.10",
"@txnlab/use-wallet": "^2.3.1",
"accept-language": "^3.0.18",
"algosdk": "^2.4.0",
"autoprefixer": "^10.4.14",
"daisyui": "^4.0.0",
"algosdk": "^2.7.0",
"autoprefixer": "^10.4.16",
"daisyui": "^4.5.0",
"gulp": "^4.0.2",
"gulp-execa": "^6.0.0",
"gulp-rename": "^2.0.0",
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-resources-to-backend": "^1.1.4",
"jotai": "^2.2.2",
"i18next": "^23.7.16",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-resources-to-backend": "^1.2.0",
"jotai": "^2.6.1",
"jotai-form": "^0.1.3",
"js-yaml": "^4.1.0",
"next": "^14.0.0",
"postcss": "^8.4.26",
"next": "^14.0.4",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"svg-to-ico": "^1.0.14",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"use-debounce": "^10.0.0",
"yup": "^1.3.2"
"yup": "^1.3.3"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@playwright/test": "^1.36.1",
"@release-it/conventional-changelog": "^8.0.0",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@playwright/test": "^1.40.1",
"@release-it/conventional-changelog": "^8.0.1",
"@swc-jotai/react-refresh": "^0.1.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.7",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.47.0",
"eslint-config-next": "^14.0.0",
"eslint-plugin-testing-library": "^6.0.0",
"eslint-plugin-yml": "^1.8.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lefthook": "^1.4.6",
"release-it": "^17.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-yml": "^1.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.5.5",
"release-it": "^17.0.1",
"ts-jest": "^29.1.1",
"yaml-eslint-parser": "^1.2.2"
},
Expand Down Expand Up @@ -113,5 +107,6 @@
}
}
}
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 0c14a18

Please sign in to comment.