-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
13 changed files
with
581 additions
and
583 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 |
---|---|---|
|
@@ -29,4 +29,4 @@ jobs: | |
run: pnpm install --frozen-lockfile | ||
|
||
- name: 🛠️ Build | ||
run: pnpm run build | ||
run: pnpm run turbo:build |
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 |
---|---|---|
|
@@ -139,6 +139,8 @@ dist | |
.config/shelve* | ||
|
||
*/dist/ | ||
.dist/ | ||
|
||
*/.output/ | ||
.output/ | ||
|
||
|
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,3 +1,9 @@ | ||
import { createConfig } from "@hrcd/eslint-config" | ||
|
||
export default createConfig({}) | ||
export default createConfig({ | ||
features: { | ||
packageJson: { | ||
enabled: false | ||
} | ||
} | ||
}) |
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
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,6 @@ | ||
{ | ||
"name": "@shelve/app", | ||
"version": "2.0.0.beta-15", | ||
"description": "Shelve is a project management tool for developers teams", | ||
"private": true, | ||
"type": "module", | ||
|
@@ -11,6 +12,12 @@ | |
"preview": "nuxt preview", | ||
"start": "node .output/server/index.mjs", | ||
"postinstall": "nuxt prepare", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix .", | ||
"typecheck": "tsc --noEmit", | ||
"db:generate": "drizzle-kit generate", | ||
"db:migrate": "drizzle-kit migrate", | ||
"db:push": "drizzle-kit push", | ||
"build:app": "turbo build --filter=@shelve/app", | ||
"build:lp": "turbo build --filter=@shelve/lp", | ||
"build:cli": "turbo build --filter=@shelve/cli", | ||
|
@@ -19,13 +26,10 @@ | |
"dev:cli": "turbo dev --filter=@shelve/cli", | ||
"release": "turbo release && changeset", | ||
"dev:prepare": "turbo dev:prepare", | ||
"lint": "turbo lint", | ||
"lint:fix": "turbo lint:fix", | ||
"test": "turbo test", | ||
"typecheck": "turbo typecheck", | ||
"db:generate": "drizzle-kit generate", | ||
"db:migrate": "drizzle-kit migrate", | ||
"db:push": "drizzle-kit push" | ||
"turbo:build": "turbo build", | ||
"turbo:lint": "turbo lint", | ||
"turbo:lint:fix": "turbo lint:fix", | ||
"turbo:typecheck": "turbo typecheck" | ||
}, | ||
"dependencies": { | ||
"@iconify-json/heroicons": "1.2.2", | ||
|
@@ -68,5 +72,11 @@ | |
"engines": { | ||
"node": ">=22.12.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/*", | ||
"base", | ||
"lp", | ||
"." | ||
] | ||
} |
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
packages: | ||
- 'packages/*' | ||
- './base' | ||
- './lp' | ||
- '.' |
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