-
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.
- Loading branch information
1 parent
8f4455a
commit 7f27d27
Showing
9 changed files
with
49 additions
and
59 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 |
---|---|---|
|
@@ -44,4 +44,7 @@ packages/wallet/next-env.d.ts | |
# sst | ||
.sst | ||
|
||
.idea | ||
.idea | ||
|
||
# Turbo tmp stuff | ||
.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
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 |
---|---|---|
|
@@ -6,10 +6,8 @@ | |
"type": "module", | ||
"license": "GNU GPL 3.0", | ||
"scripts": { | ||
"dev": "pm2 start pm2.config.cjs", | ||
"dev:stop": "pm2 stop all", | ||
"dev:restart": "pm2 restart all", | ||
"dev:gui": "pm2 plus", | ||
"dev": "turbo dev", | ||
"dev:infra": "sst dev", | ||
"lint": "biome lint .", | ||
"format:check": "biome check .", | ||
"format": "biome check --write .", | ||
|
@@ -32,13 +30,16 @@ | |
"@types/node": "^22.0.0", | ||
"knip": "^5.27.0", | ||
"npm-check-updates": "^16.14.20", | ||
"pm2": "^5.4.2", | ||
"rimraf": "^6.0.1", | ||
"sst": "2.43.6", | ||
"typescript": "^5.5.4" | ||
}, | ||
"workspaces": [ | ||
"packages/*", | ||
"example/*" | ||
] | ||
], | ||
"dependencies": { | ||
"turbo": "^2.1.1" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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 was deleted.
Oops, something went wrong.
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,34 @@ | ||
{ | ||
"$schema": "https://turbo.build/schema.json", | ||
"tasks": { | ||
"//#dev:infra": { | ||
"outputs": [".sst/**", "!.sst/cache/**", "!.sst/debug.log"], | ||
"inputs": ["iac/**"] | ||
}, | ||
"@frak-labs/nexus-sdk#build": { | ||
"outputs": ["dist/**"], | ||
"inputs": ["src/**"] | ||
}, | ||
"build": { | ||
"dependsOn": [ | ||
"@frak-labs/nexus-sdk#build", | ||
"//#dev:infra", | ||
"^build" | ||
], | ||
"outputs": [ | ||
".next/**", | ||
"!.next/cache/**", | ||
".open-next/**", | ||
"!..open-next/cache/**" | ||
] | ||
}, | ||
"typecheck": { | ||
"dependsOn": ["^typecheck"] | ||
}, | ||
"dev": { | ||
"dependsOn": ["@frak-labs/nexus-sdk#build"], | ||
"persistent": true, | ||
"cache": false | ||
} | ||
} | ||
} |