-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
workspaces (#60)
use npm workspaces and just
Showing
10 changed files
with
156 additions
and
389 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.idea | ||
*.iml | ||
node_modules | ||
dist | ||
cf/.wrangler | ||
cf/dist |
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,26 @@ | ||
{ | ||
"name": "cf", | ||
"version": "0.0.0", | ||
"description": "", | ||
"private": true, | ||
"scripts": { | ||
"deploy": "wrangler --env prod deploy", | ||
"deploy-preview": "wrangler deploy --dry-run --outdir dist", | ||
|
||
"test": "tsx --tsconfig ./tsconfig.json --test '**/*.test.ts'", | ||
"test-only": "tsx --tsconfig ./tsconfig.json --test --test-only '**/*.test.ts'", | ||
|
||
"typecheck": "npm run typecheck-prod && npm run typecheck-test", | ||
"typecheck-prod": "tsc", | ||
"typecheck-test": "tsc --project tsconfig.test.json" | ||
}, | ||
"type": "module", | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "^4.20240129.0", | ||
"@podverse/podcast-feed-parser": "^1.1.1", | ||
"@types/node": "^20.11.10", | ||
"tsx": "^4.7.0", | ||
"typescript": "^5.3.3", | ||
"wrangler": "^3.25.0" | ||
} | ||
} |
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,22 @@ | ||
#!/usr/bin/env just --justfile | ||
|
||
default: | ||
just --list --justfile {{justfile()}} | ||
|
||
check: lint typecheck | ||
|
||
ci: ci-check test | ||
|
||
ci-check: ci-lint typecheck | ||
|
||
ci-lint: | ||
npm run ci-lint | ||
|
||
lint: | ||
npm run lint | ||
|
||
test: | ||
npm test --workspaces | ||
|
||
typecheck: | ||
npm run typecheck --workspaces |
Oops, something went wrong.