-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add pnpm-workspace.yaml - Move current project items into packages/simple/ - Install turborepo
- Loading branch information
Showing
22 changed files
with
1,899 additions
and
81 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
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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
cd "${0%/*}" && exec > .gitignore | ||
gi() { curl -L -s https://www.gitignore.io/api/"$*"; } | ||
# `gibo list' and `gi list' | ||
gibo dump Linux | ||
gibo dump Windows | ||
gibo dump macOS | ||
gibo dump Node | ||
gi nextjs | ||
echo 'cypress/videos/' | ||
echo 'cypress/screenshots/' | ||
echo '**/cypress/videos/' | ||
echo '**/cypress/screenshots/' | ||
echo '.turbo' | ||
echo '**/typedocs/' |
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 |
---|---|---|
@@ -1,29 +1,18 @@ | ||
{ | ||
"name": "playground", | ||
"version": "0.1.0", | ||
"private": true, | ||
"version": "0.1.0", | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"test": "cypress run", | ||
"dev": "turbo dev", | ||
"build": "turbo build", | ||
"start": "turbo start", | ||
"test": "turbo test", | ||
"lint": "biome check .", | ||
"format": "biome check --apply ." | ||
}, | ||
"dependencies": { | ||
"autoprefixer": "10.4.17", | ||
"next": "14.1.0", | ||
"postcss": "8.4.33", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.11.5", | ||
"@types/react": "18.2.48", | ||
"@types/react-dom": "18.2.18", | ||
"@biomejs/biome": "^1.5.2", | ||
"cypress": "^13.6.3", | ||
"typedoc": "^0.25.7", | ||
"typescript": "5.3.3" | ||
"turbo": "^1.11.3" | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
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,8 +1,4 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
experimental: { | ||
appDir: true, | ||
}, | ||
} | ||
const nextConfig = {} | ||
|
||
module.exports = nextConfig |
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,26 @@ | ||
{ | ||
"name": "simple", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"test": "cypress run" | ||
}, | ||
"dependencies": { | ||
"autoprefixer": "10.4.17", | ||
"next": "14.1.0", | ||
"postcss": "8.4.33", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.11.5", | ||
"@types/react": "18.2.48", | ||
"@types/react-dom": "18.2.18", | ||
"@biomejs/biome": "^1.5.2", | ||
"typedoc": "^0.25.7", | ||
"typescript": "5.3.3" | ||
} | ||
} |
Oops, something went wrong.