diff --git a/.eslintignore b/.eslintignore index de4d1f007..00e83f596 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,3 @@ dist node_modules +tailwind.config.js diff --git a/.github/workflows/build-zip.yml b/.github/workflows/build-zip.yml index 52b291ef7..b0eff9b78 100644 --- a/.github/workflows/build-zip.yml +++ b/.github/workflows/build-zip.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index b69328051..000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Test - -on: - push: - branches: [ main ] - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version-file: ".nvmrc" - - - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} - - - uses: pnpm/action-setup@v2 - - - run: pnpm install --frozen-lockfile - - - run: pnpm test diff --git a/.gitignore b/.gitignore index 3e03940cf..8a24994d7 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/.husky/commit-msg b/.husky/commit-msg deleted file mode 100755 index 9ef2ef0b2..000000000 --- a/.husky/commit-msg +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env sh -. "$(dirname -- "$0")/_/husky.sh" - -pnpm run commitlint ${1} diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index f1e568560..000000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env sh -. "$(dirname -- "$0")/_/husky.sh" - -pnpm dlx lint-staged diff --git a/README.md b/README.md index 820e5cd7a..eae4c5b3e 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
JunyWuuuu91 π» |
- dim0147 π |
- jon lepage π |
- LironH π€ |
- Spencer Chang π |
- deld123 π |
- Michal Hantl π€ π |
-
Jordan Burgess π€ |
- NAMEUN CHO π |
- Andrew Mudrov π¬ |
- Shubham Lad π |
- hanrong π |
- Florian KΓΆnig π¬ |
- Tran Phong π |
-
tonychandesign π |
- Ihor Makarchuk π |
- hugoobauer π |
- Karan Singh π€ |
- remusris π€ |
- hegel_dark π€ |
- Jingsi π π» |
-
Chris Ozgo π |
- Cong π |
- PatrykKuniczak π€ π» π |
- Hector Parra π |
- JeongHyeon Kim π |
- Terminels π» |
- WonkyDD π» π |
-
wangxy π |
- Rasul π |
- gavinhow π |
- Anand D. π |
- Romain Dequidt π |
- Jakob Guddas π π |
- Dino Scheidt π» |
-
η§η₯ π» |
- Hiverse π |
- rosendolu π» |
- Egor Stronhin π |
- webLiang π» |
- Adam Spiers π |
- Ofir Zeitoun π» |
-
Dmitri Yourchev π» π |
- Gaishi Hirota π» |
- pipizhu π» |
-
+ Edit pages/devtools-panel/src/Panel.tsx
and save to reload.
+
+ Edit pages/newtab/src/Newtab.tsx
and save to reload.
+
pages/options/src/Options.tsx
and save to reload.
+
+ Edit pages/popup/src/Popup.tsx
and save to reload.
+
+ Edit pages/sidepanel/src/SidePanel.tsx
and save to reload.
+
- Edit src/pages/newtab/Newtab.tsx
and save to reload.
-
- Edit src/pages/popup/Popup.tsx
and save to reload.
-
- Edit src/pages/sidepanel/SidePanel.tsx
and save to reload.
-