Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/adamantite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,5 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile

- name: Generate types
run: bun run typegen

- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- We use `adamantite` for linting, formatting and type checking.
- `adamantite check` to run linting checks.
- `adamantite format` to format the code.
- `adamantite typecheck` to type check the code.
- `tsc --noEmit` to type check the code.
- `adamantite analyze` to analyze the code for unused dependencies.
- Always run `bun run format` after editing files.
- Run `bun run test` to run the test suite.
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "bun --hot src/index.ts",
"start": "bun --bun src/index.ts",
"typecheck": "adamantite typecheck"
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@arcjet/ip": "^1.0.0-beta.15",
Expand Down
3 changes: 2 additions & 1 deletion apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
},
"scripts": {
"build": "bun --bun vite build",
"codegen": "paraglide-js compile --project ../../tooling/internationalization/project.inlang --outdir ./src/shared/internationalization",
"bump:deps": "bun update --interactive",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "bun --bun vite dev",
"preview": "bun --bun vite preview",
"start": "node .output/server/index.mjs",
"typecheck": "adamantite typecheck"
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@init/auth": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
},
"scripts": {
"build": "tauri build",
"codegen": "paraglide-js compile --project ../../tooling/internationalization/project.inlang --outdir ./src/shared/internationalization",
"bump:deps": "bun update --interactive",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "tauri dev",
"typecheck": "adamantite typecheck"
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@init/env": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
"scripts": {
"astro": "astro",
"build": "astro build",
"codegen": "paraglide-js compile --project ../../tooling/internationalization/project.inlang --outdir ./src/shared/internationalization",
"bump:deps": "bun update --interactive",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "astro dev",
"preview": "astro preview",
"typecheck": "adamantite typecheck",
"typecheck": "tsc --noEmit",
"typegen": "astro sync"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion apps/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"codegen": "paraglide-js compile --project ../../tooling/internationalization/project.inlang --outdir ./src/shared/internationalization",
"compile": "tsc --noEmit",
"bump:deps": "bun update --interactive",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"postinstall": "wxt prepare",
"typecheck": "adamantite typecheck",
"typecheck": "tsc --noEmit",
"typegen": "wxt prepare",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox"
Expand Down
8 changes: 4 additions & 4 deletions apps/extension/src/features/demo/components/popup-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Button } from "@init/ui/components/button"
import { TypographyH1, TypographyP } from "@init/ui/components/typography"
import { Typography } from "@init/ui/components/typography"
import { Link } from "wouter"

export default function PopupDemo() {
return (
<div className="flex h-[500px] w-[500px] flex-col items-center justify-center gap-4">
<div className="flex flex-col items-center">
<TypographyH1>Hello!</TypographyH1>
<TypographyP>
<Typography.H1>Hello!</Typography.H1>
<Typography.P>
This is a demo of the popup. It is a simple popup that displays a message.
</TypographyP>
</Typography.P>
</div>

<Button>Click me</Button>
Expand Down
8 changes: 4 additions & 4 deletions apps/extension/src/features/demo/components/settings-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Button } from "@init/ui/components/button"
import { TypographyH1, TypographyP } from "@init/ui/components/typography"
import { Typography } from "@init/ui/components/typography"
import { Link } from "wouter"

export default function SettingsDemo() {
return (
<div className="flex h-[500px] w-[500px] flex-col items-center justify-center gap-4">
<TypographyH1>Settings</TypographyH1>
<TypographyP>
<Typography.H1>Settings</Typography.H1>
<Typography.P>
This is a demo of the settings. It is a simple settings that displays a message.
</TypographyP>
</Typography.P>
<Button render={<Link to="/" />}>Go back to home</Button>
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prebuild": "expo prebuild --clean",
"start": "expo start",
"test": "bun test",
"typecheck": "adamantite typecheck",
"typecheck": "tsc --noEmit",
"web": "expo start --web"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
"scripts": {
"astro": "astro",
"build": "astro build",
"codegen": "paraglide-js compile --project ../../tooling/internationalization/project.inlang --outdir ./src/shared/internationalization",
"bump:deps": "bun update --interactive",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "astro dev",
"preview": "astro preview",
"typecheck": "adamantite typecheck",
"typecheck": "tsc --noEmit",
"typegen": "astro sync"
},
"dependencies": {
Expand Down
Loading