-
Notifications
You must be signed in to change notification settings - Fork 24
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 #55 from outerbase/bwilmoth/prettier-commit
Prettier added to the project
- Loading branch information
Showing
37 changed files
with
5,430 additions
and
4,009 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,21 +1,21 @@ | ||
## Purpose | ||
|
||
|
||
|
||
## Tasks | ||
|
||
<!-- [ ] incomplete; [x] complete --> | ||
|
||
- [ ] | ||
- [ ] | ||
|
||
## Verify | ||
|
||
<!-- guidance or steps to assist the reviewer --> | ||
|
||
- | ||
- | ||
|
||
## Before | ||
<!-- screenshot before changes --> | ||
|
||
|
||
<!-- screenshot before changes --> | ||
|
||
## After | ||
<!-- screenshot after changes --> | ||
|
||
<!-- screenshot after 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm exec lint-staged |
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 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 4, | ||
"semi": false, | ||
"singleQuote": 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 |
---|---|---|
@@ -1,27 +1,36 @@ | ||
{ | ||
"name": "durable-object-starter", | ||
"version": "0.0.0", | ||
"private": true, | ||
"scripts": { | ||
"deploy": "wrangler deploy", | ||
"dev": "wrangler dev", | ||
"start": "wrangler dev", | ||
"cf-typegen": "wrangler types" | ||
}, | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "^4.20241216.0", | ||
"@types/pg": "^8.11.10", | ||
"typescript": "^5.7.2", | ||
"wrangler": "^3.96.0" | ||
}, | ||
"dependencies": { | ||
"@libsql/client": "^0.14.0", | ||
"@outerbase/sdk": "2.0.0-rc.3", | ||
"hono": "^4.6.14", | ||
"jose": "^5.9.6", | ||
"mongodb": "^6.11.0", | ||
"mysql2": "^3.11.4", | ||
"node-sql-parser": "^4.18.0", | ||
"pg": "^8.13.1" | ||
} | ||
} | ||
"name": "durable-object-starter", | ||
"version": "0.0.0", | ||
"private": true, | ||
"scripts": { | ||
"deploy": "wrangler deploy", | ||
"dev": "wrangler dev", | ||
"start": "wrangler dev", | ||
"cf-typegen": "wrangler types", | ||
"prepare": "husky" | ||
}, | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "^4.20241216.0", | ||
"@types/pg": "^8.11.10", | ||
"husky": "^9.1.7", | ||
"lint-staged": "^15.2.11", | ||
"prettier": "3.4.2", | ||
"typescript": "^5.7.2", | ||
"wrangler": "^3.96.0" | ||
}, | ||
"dependencies": { | ||
"@libsql/client": "^0.14.0", | ||
"@outerbase/sdk": "2.0.0-rc.3", | ||
"hono": "^4.6.14", | ||
"jose": "^5.9.6", | ||
"mongodb": "^6.11.0", | ||
"mysql2": "^3.11.4", | ||
"node-sql-parser": "^4.18.0", | ||
"pg": "^8.13.1" | ||
}, | ||
"lint-staged": { | ||
"*.{js,jsx,ts,tsx,json,css,md}": [ | ||
"prettier --write" | ||
] | ||
} | ||
} |
Oops, something went wrong.