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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
46 changes: 46 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"permissions": {
"allow": [
"Bash(timeout:*)",
"Bash(npm run dev:*)",
"Bash(node --version:*)",
"Bash(npm --version)",
"Bash(npx prettier:*)",
"Bash(pnpm lint:*)",
"Bash(pnpm lint:fix:*)",
"Bash(pnpm --filter chrome-extension lint:*)",
"Bash(pnpm --filter @extension/content-script lint:*)",
"Bash(pnpm --filter @extension/ui lint:*)",
"Bash(pnpm --filter @extension/shared lint:*)",
"Bash(pnpm --filter @extension/shared lint:fix:*)",
"Bash(pnpm --filter @extension/sidepanel lint:fix:*)",
"Bash(xargs sed -i \"s|from ''@extension/shared/lib/utils/csv-tracker''|from ''@app/utils/csv-tracker''|g; s|from ''@extension/shared/lib/utils/storage-service''|from ''@app/utils/storage-service''|g; s|from ''@extension/shared/lib/utils/weekly-stats-storage''|from ''@app/utils/weekly-stats-storage''|g; s|from ''@extension/shared/lib/utils/user-stats-storage''|from ''@app/utils/user-stats-storage''|g; s|from ''@extension/shared/lib/utils/types''|from ''@app/types''|g; s|from ''@extension/shared/lib/hooks/useTrackedDataQuery''|from ''@app/hooks/useTrackedDataQuery''|g; s|from ''@extension/shared/lib/hooks/useUserStatsQuery''|from ''@app/hooks/useUserStatsQuery''|g; s|from ''@extension/shared/lib/hooks/useWeeklyStatsQuery''|from ''@app/hooks/useWeeklyStatsQuery''|g; s|from ''@extension/shared/lib/hooks/useFormatting''|from ''@app/hooks/useFormatting''|g; s|from ''@extension/shared/lib/hooks/useHourlyExp''|from ''@app/hooks/useHourlyExp''|g; s|from ''@extension/shared/lib/hooks/useScreenData''|from ''@app/hooks/useScreenData''|g; s|from ''@extension/shared/lib/hooks/useTrackedData''|from ''@app/hooks/useTrackedData''|g; s|from ''@extension/shared/lib/hooks/useUserStats''|from ''@app/hooks/useUserStats''|g; s|from ''@extension/shared/lib/hooks/useHourStats''|from ''@app/hooks/useHourStats''|g; s|from ''@extension/shared/lib/hooks/usePeriodStats''|from ''@app/hooks/usePeriodStats''|g; s|from ''@extension/shared/lib/hooks/useDataExport''|from ''@app/hooks/useDataExport''|g; s|from ''@extension/shared/lib/hooks/useItemValuesQuery''|from ''@app/hooks/useItemValuesQuery''|g; s|import\\(''@extension/shared/lib/utils/weekly-stats-storage''\\)|import\\(''@app/utils/weekly-stats-storage''\\)|g\")",
"Bash(xargs sed:*)",
"Bash(pnpm install:*)",
"Bash(pnpm build:*)",
"Bash(pnpm add:*)",
"Bash(pnpm format:*)",
"Bash(git add:*)",
"Bash(git commit:*)",
"Bash(npx eslint:*)",
"Bash(git push:*)",
"Bash(pnpm type-check:*)",
"Bash(pnpm dev)",
"Bash(npx vite:*)",
"Bash(taskkill:*)",
"Bash(ls:*)",
"Bash(python3 -c \" import sys, json for line in sys.stdin: try: obj = json.loads\\(line.strip\\(\\)\\) if obj.get\\(''type''\\) == ''human'': msg = obj.get\\(''message'', {}\\) if isinstance\\(msg, dict\\): content = msg.get\\(''content'', ''''\\) if isinstance\\(content, str\\): print\\(''HUMAN:'', content[:300]\\) elif isinstance\\(content, list\\): for c in content: if isinstance\\(c, dict\\) and c.get\\(''type''\\) == ''text'': print\\(''HUMAN:'', c.get\\(''text'', ''''\\)[:300]\\) elif obj.get\\(''type''\\) == ''assistant'': msg = obj.get\\(''message'', {}\\) if isinstance\\(msg, dict\\): content = msg.get\\(''content'', ''''\\) if isinstance\\(content, list\\): for c in content: if isinstance\\(c, dict\\) and c.get\\(''type''\\) == ''text'': print\\(''ASSISTANT:'', c.get\\(''text'', ''''\\)[:200]\\) except: pass \")",
"Bash(node -e:*)",
"WebFetch(domain:ui.shadcn.com)",
"WebFetch(domain:raw.githubusercontent.com)",
"Bash(cd:*)",
"Bash(node:*)",
"Bash(pnpm remove:*)",
"Bash(pnpm test:*)",
"Bash(python -m json.tool:*)",
"Bash(git ls-tree:*)",
"Bash(echo:*)",
"Bash(awk:*)"
]
}
}
24 changes: 0 additions & 24 deletions .github/workflows/auto-change-prs-branch.yml

This file was deleted.

17 changes: 13 additions & 4 deletions .github/workflows/build-zip.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build And Upload Extension Zip Via Artifact
name: Build Extension

on: [ pull_request_target ]
on: [pull_request]

permissions:
contents: read

jobs:
build:
Expand All @@ -10,10 +13,16 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"
cache: pnpm
- run: pnpm install --frozen-lockfile --prefer-offline
- name: Create .env for build
run: |
echo "CLI_CEB_DEV=false" > .env
echo "CLI_CEB_FIREFOX=false" >> .env
- run: pnpm build
- run: pnpm zip
- uses: actions/upload-artifact@v4
with:
path: dist/*
name: syrnia-tracker
path: dist-zip/*.zip
42 changes: 0 additions & 42 deletions .github/workflows/cancel-other-workflows-on-close.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/codeql.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/dependencies-auto-merge.yml

This file was deleted.

71 changes: 0 additions & 71 deletions .github/workflows/e2e-modular.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/e2e.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/greetings.yml

This file was deleted.

8 changes: 5 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Lint Check

on: [ pull_request_target ]
on: [pull_request]

permissions:
contents: read

jobs:
eslint:
Expand All @@ -10,8 +13,7 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"
cache: pnpm

- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm lint
25 changes: 0 additions & 25 deletions .github/workflows/prettier.yml

This file was deleted.

Loading
Loading