Skip to content

Commit 7a81a1d

Browse files
committed
2.6.1 fix: don't crash app.clickup.com on Firefox
- remove v1 codebase (rename to browser-extension) - fix: feature info links - docs: add AGENTS.md for browser-extension - chore: fix husky
1 parent b7032e1 commit 7a81a1d

File tree

176 files changed

+10184
-22324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+10184
-22324
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: install
33-
run: npm ci && npm --prefix=packages/shell-chrome-v3 ci
33+
run: npm ci
3434
env:
3535
CYPRESS_INSTALL_BINARY: "0"
3636
- name: build
@@ -46,11 +46,7 @@ jobs:
4646
- name: typecheck
4747
run: node --run typecheck
4848
- name: check formatting
49-
run: node --run format
50-
- name: Commit changes
51-
uses: stefanzweifel/git-auto-commit-action@v5
52-
with:
53-
commit_message: Apply formatting changes
49+
run: node --run check:format
5450
# see https://github.com/bahmutov/cypress-gh-action-split-install
5551
- run: npx cypress cache path && npx cypress cache list
5652
# restore / cache the binary ourselves on Linux
@@ -68,11 +64,5 @@ jobs:
6864
with:
6965
start: node --run start
7066
command: node --run cy:run
71-
working-directory: packages/shell-chrome-v3
67+
working-directory: packages/browser-extension
7268
install: false
73-
# - name: Devtools@v1 E2E
74-
# uses: cypress-io/github-action@v6
75-
# with:
76-
# start: node --run start:ci
77-
# command: node --run cy:run
78-
# install: false

.husky/pre-commit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#!/bin/sh
21
npx lint-staged

.prettierrc.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
module.exports = {
2-
semi: false,
3-
printWidth: 120,
4-
singleQuote: true,
5-
tabWidth: 4,
6-
trailingComma: 'all',
7-
}
1+
export default {
2+
semi: true,
3+
printWidth: 100,
4+
singleQuote: true,
5+
tabWidth: 2,
6+
trailingComma: 'all',
7+
};

AGENTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Alpine.js Devtools
22

3-
The main application to work on is in `packages/shell-chrome-v3`. This is a Chrome/Firefox extension using Manifest v3. The panel is built with SolidJS.
3+
The main application to work on is in `packages/browser-extension`. This is a Chrome/Firefox extension using Manifest v3. The panel is built with SolidJS.
44

55
We want to support Safari in the future.
66

@@ -27,15 +27,15 @@ When making changes to the UI, you **SHOULD** propose to run the cypress tests (
2727

2828
## Running Cypress Tests
2929

30-
To run the Cypress tests for the `shell-chrome-v3` package, you **SHOULD** use the `jules-test` script. This script will start the development server and then run the tests.
30+
To run the Cypress tests for the `browser-extension` package, you **SHOULD** use the `jules-test` script. This script will start the development server and then run the tests.
3131

3232
To run the Cypress tests you **MUST** run from the root of the project (`/app` for Jules),
3333

3434
```bash
35-
npm run --prefix=packages/shell-chrome-v3 jules-test
35+
npm run --prefix=packages/browser-extension jules-test
3636
```
3737

38-
**Note for agent Jules:** You **SHOULD** be aware that when working in the shell, the current working directory is often `/app/packages/shell-chrome-v3`. If you are having trouble with file paths, you **SHOULD** run `pwd` to confirm your location.
38+
**Note for agent Jules:** You **SHOULD** be aware that when working in the shell, the current working directory is often `/app/packages/browser-extension`. If you are having trouble with file paths, you **SHOULD** run `pwd` to confirm your location.
3939

4040
This will run all the Cypress tests in headless mode.
4141

cypress.config.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

cypress/e2e/load.cy.js

Lines changed: 0 additions & 44 deletions
This file was deleted.

cypress/e2e/settings.cy.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

cypress/e2e/v2/component-data.cy.js

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)