Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REDESIGN ROOT PR #425

Merged
merged 21 commits into from
May 11, 2024
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
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist
node_modules
tailwind.config.js
6 changes: 4 additions & 2 deletions .github/workflows/build-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.OS }}-build-${{ hashFiles('**/pnpm-lock.yaml') }}

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 8

- run: pnpm install --frozen-lockfile

Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/test.yml

This file was deleted.

17 changes: 10 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
# dependencies
/node_modules
**/node_modules

# testing
/coverage
**/coverage

# build
/dist
**/dist
**/build

# env
**/.env.local
**/.env

# etc
.DS_Store
.env.local
.idea
**/.turbo

# compiled
utils/reload/*.js
utils/reload/injections/*.js
public/manifest.json
apps/chrome-extension/public/manifest.json
4 changes: 0 additions & 4 deletions .husky/commit-msg

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

Loading
Loading