-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: migrate to pnpm * chore: set packageManager version * chore: setup vercel and netlify config
- Loading branch information
1 parent
7dd7a6b
commit 92ee121
Showing
14 changed files
with
8,390 additions
and
7,707 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env.local | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn commitlint --edit "$1" | ||
pnpm commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged | ||
yarn type-check:turbo | ||
pnpm lint-staged | ||
pnpm type-check:turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint:turbo | ||
pnpm lint:turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
enable-pre-post-scripts=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build] | ||
command = 'pnpm build' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,26 +10,26 @@ | |
"postbuild": "next-sitemap --config next-sitemap.config.js", | ||
"start": "next start", | ||
"lint": "next lint", | ||
"lint:fix": "eslint src --fix && yarn format", | ||
"lint:fix": "eslint src --fix && pnpm format", | ||
"lint:turbo": "npx turbo lint", | ||
"type-check": "tsc --noEmit", | ||
"type-check:turbo": "npx turbo type-check", | ||
"test:e2e": "playwright test", | ||
"format": "prettier --write src", | ||
"up": "yarn upgrade-interactive", | ||
"up-latest": "yarn up --latest", | ||
"up-interactive": "pnpm up -i", | ||
"up-latest": "pnpm up-interactive -L", | ||
"release": "cross-env HUSKY=0 standard-version", | ||
"push-release": "git push --follow-tags origin main", | ||
"prepare": "husky install" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/react": "^2.5.1", | ||
"@chakra-ui/react": "^2.5.5", | ||
"@emotion/react": "^11.10.6", | ||
"@emotion/styled": "^11.10.6", | ||
"framer-motion": "^8.5.5", | ||
"framer-motion": "^10.10.0", | ||
"next": "^13.2.3", | ||
"next-pwa": "^5.6.0", | ||
"next-seo": "^5.15.0", | ||
"next-seo": "^6.0.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^4.8.0" | ||
|
@@ -38,22 +38,24 @@ | |
"@commitlint/config-conventional": "^17.4.4", | ||
"@commitlint/cz-commitlint": "^17.4.4", | ||
"@playwright/test": "^1.31.1", | ||
"@types/react": "^18.0.28", | ||
"@types/react": "^18.0.31", | ||
"commitizen": "^4.3.0", | ||
"commitlint": "^17.4.4", | ||
"commitlint": "^17.5.1", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.35.0", | ||
"eslint": "^8.37.0", | ||
"eslint-config-next": "^13.2.3", | ||
"eslint-config-sznm": "^1.1.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^13.1.2", | ||
"next-sitemap": "^3.1.55", | ||
"next-sitemap": "^4.0.6", | ||
"prettier": "^2.8.4", | ||
"standard-version": "^9.5.0", | ||
"turbo": "^1.8.3", | ||
"turbo": "^1.8.8", | ||
"typescript": "^4.9.5" | ||
}, | ||
"engines": { | ||
"node": ">=16.x.x" | ||
} | ||
"node": ">=16.x.x", | ||
"pnpm": ">=8" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.
92ee121
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nextarter-chakra – ./
nextarter-chakra-git-main-sozonome.vercel.app
nextarter-chakra-sozonome.vercel.app
nextchakra-starter.vercel.app
nextarter-chakra.vercel.app
nextchakra-starter.sznm.dev
nextarter-chakra.sznm.dev