-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from wayofdev/feat/configuration
- Loading branch information
Showing
73 changed files
with
4,717 additions
and
884 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": [ | ||
"@changesets/changelog-github", | ||
{ | ||
"repo": "wayofdev/next-starter-tpl" | ||
} | ||
], | ||
"privatePackages": { | ||
"version": true, | ||
"tag": true | ||
}, | ||
"commit": true, | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "master", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
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,46 @@ | ||
# All node_modules directories | ||
node_modules/ | ||
# All secrets | ||
**/.env | ||
**/.env.local | ||
**/.env.*.local | ||
# local env files | ||
# By default all git files | ||
.git/ | ||
.gitignore | ||
.gitattributes | ||
.github/ | ||
|
||
# Tools caches | ||
.cache/* | ||
tsconfig.tsbuildinfo | ||
.eslintcache | ||
|
||
# Used when building with nextjs (next-eslint) | ||
!.eslintrc.base.json | ||
!.prettierignore | ||
!.prettierrc.js | ||
!.eslintignore | ||
|
||
# npm | ||
!.npmrc | ||
|
||
# Docker related | ||
.dockerignore | ||
Dockerfile | ||
docker-compose.*.yml | ||
docker-compose.yml | ||
docker/ | ||
|
||
# Log files | ||
logs/ | ||
*.log | ||
.turbo/ | ||
**/.turbo/ | ||
|
||
# Temp files | ||
tmp/ | ||
*.tmp | ||
|
||
# IDE related | ||
.idea/ |
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,3 @@ | ||
tasks: | ||
- init: pnpm install | ||
command: pnpm run dev |
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,6 @@ | ||
# npm-check-updates configuration used by yarn deps:check && yarn deps:update | ||
# convenience scripts. | ||
# @link https://github.com/raineorshine/npm-check-updates | ||
|
||
# Add here exclusions on packages if any | ||
reject: [ ] |
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 @@ | ||
strict-peer-dependencies=false | ||
engine-strict=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
dist/ | ||
.next/ | ||
**/dist/** | ||
**/.next/** | ||
**/build/** | ||
**/tmp/** | ||
pnpm-lock.yaml | ||
.changeset/*.md |
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 @@ | ||
**/.next | ||
.next |
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 +1,2 @@ | ||
CHANGELOG.md | ||
.github/workflows/codeql-analysis.yml |
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,29 +1,28 @@ | ||
{ | ||
"name": "docs", | ||
"version": "0.0.0", | ||
"version": "1.0.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev --port 3001", | ||
"build": "next build", | ||
"start": "next start", | ||
"lint": "next lint" | ||
"dev": "next dev --port 3001", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"next": "^13.0.7", | ||
"@wayofdev/ui": "workspace:*", | ||
"next": "^13.1.1", | ||
"nextra": "^2.0.2", | ||
"nextra-theme-docs": "^2.0.2", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"ui": "workspace:*", | ||
"nextra": "^2.0.1", | ||
"nextra-theme-docs": "^2.0.1" | ||
"react-dom": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.11.17", | ||
"@types/node": "^18.11.18", | ||
"@types/react": "^18.0.26", | ||
"@types/react-dom": "^18.0.9", | ||
"@types/react-dom": "^18.0.10", | ||
"@wayofdev/browserslist-config": "^1.1.0", | ||
"@wayofdev/eslint-config-custom": "workspace:*", | ||
"eslint": "^8.30.0", | ||
"eslint-config-custom": "workspace:*", | ||
"tsconfig-config": "workspace:*", | ||
"typescript": "^4.9.4" | ||
} | ||
} |
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,15 +1,24 @@ | ||
{ | ||
"extends": "tsconfig-config/next.json", | ||
"exclude": ["node_modules", "dist", "coverage"], | ||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"extends": "../../tsconfig.base.json", | ||
"exclude": [ | ||
"node_modules", | ||
"dist", | ||
"coverage" | ||
], | ||
"include": [ | ||
"next-env.d.ts", | ||
"**/*.ts", | ||
"**/*.tsx" | ||
], | ||
"compilerOptions": { | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"outDir": "dist", | ||
"baseUrl": "./", | ||
// "paths": { | ||
// "@/*": [ | ||
// "src/*" | ||
// ] | ||
// } | ||
"moduleResolution": "node" | ||
"module": "esnext" | ||
} | ||
} |
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 @@ | ||
# Sentry | ||
.sentryclirc |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.