Skip to content

Commit d2a31c8

Browse files
committed
update dependency
2 parents cc98910 + 375ad05 commit d2a31c8

1,104 files changed

Lines changed: 30618 additions & 12279 deletions

File tree

Some content is hidden

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

.claude/agents/code-inline-reviewer.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ Each rule file contains:
5656
8. **DO NOT invent new rules, stylistic preferences, or commentary outside the listed rules.**
5757
9. **DO NOT describe what you are doing or add extra content.**
5858
EXCEPTION: If you believe something MIGHT be a Rule violation but are uncertain, err on the side of including it in the violations array rather than skipping it.
59-
10. **Reality check before posting**: Before creating each inline comment, re-read the specific code one more time and confirm the violation is real. If upon re-reading you realize the code is actually correct, **do NOT post the comment** — silently skip it and move on. Never post a comment that flags a violation and then concludes it is not actually a problem.
6059

6160
## Comment Format
6261

.claude/skills/playwright-app-testing/SKILL.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,19 @@ When signing in to dev environment:
4141
- **Email**: Generate random Gmail address (e.g., `user+throwaway<random>@gmail.com`)
4242
- **New Account**: Press join to create account
4343
- **Existing Account**: Magic code: Always `000000`
44-
- **Onboarding**: Skip all optional steps
44+
- **Onboarding**: The `SKIP_ONBOARDING` env flag is set to `false` by default in `.env`. When `false`, onboarding screens will appear after sign-in for new accounts. Unless you are specifically asked to test onboarding, update the flag to `true` before starting the dev server so that onboarding is bypassed entirely:
45+
```bash
46+
sed -i '' 's/SKIP_ONBOARDING=false/SKIP_ONBOARDING=true/' .env
47+
```
48+
If you need to test onboarding flows, set it back to `false`:
49+
```bash
50+
sed -i '' 's/SKIP_ONBOARDING=true/SKIP_ONBOARDING=false/' .env
51+
```
52+
You can check the current value with:
53+
```bash
54+
grep SKIP_ONBOARDING .env
55+
```
56+
**Important**: After changing `SKIP_ONBOARDING` in `.env`, the web dev server must be restarted for the change to take effect.
4557

4658
## Example Usage
4759

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SECURE_NGROK_URL=https://secure-expensify-user.ngrok.io/
99
NGROK_URL=https://expensify-user.ngrok.io/
1010
USE_NGROK=false
1111
USE_WEB_PROXY=false
12+
SKIP_ONBOARDING=false
1213
USE_WDYR=false
1314
USE_REDUX_DEVTOOLS=false
1415
CAPTURE_METRICS=false

.github/ISSUE_TEMPLATE/DesignDoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Design Doc tracking issue
33
about: A standard template to follow when leading a project
4-
labels: Daily, NewFeature
4+
labels: Daily, NewFeature, DesignDoc
55
---
66

77
## Proposal

.github/actions/javascript/authorChecklist/categories/newComponentCategory.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,13 @@ function detectReactComponent(code: string, filename: string): boolean | undefin
5454
}
5555
if (path.isFunctionDeclaration() || path.isArrowFunctionExpression() || path.isFunctionExpression()) {
5656
path.traverse({
57-
// eslint-disable-next-line @typescript-eslint/naming-convention
5857
JSXElement() {
5958
isReactComponent = true;
6059
path.stop();
6160
},
6261
});
6362
}
6463
},
65-
// eslint-disable-next-line @typescript-eslint/naming-convention
6664
ClassDeclaration(path) {
6765
const {superClass} = path.node as unknown as SuperClassType;
6866
if (

.github/actions/javascript/authorChecklist/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15501,15 +15501,13 @@ function detectReactComponent(code, filename) {
1550115501
}
1550215502
if (path.isFunctionDeclaration() || path.isArrowFunctionExpression() || path.isFunctionExpression()) {
1550315503
path.traverse({
15504-
// eslint-disable-next-line @typescript-eslint/naming-convention
1550515504
JSXElement() {
1550615505
isReactComponent = true;
1550715506
path.stop();
1550815507
},
1550915508
});
1551015509
}
1551115510
},
15512-
// eslint-disable-next-line @typescript-eslint/naming-convention
1551315511
ClassDeclaration(path) {
1551415512
const { superClass } = path.node;
1551515513
if (superClass &&
@@ -15679,7 +15677,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
1567915677
return (mod && mod.__esModule) ? mod : { "default": mod };
1568015678
};
1568115679
Object.defineProperty(exports, "__esModule", ({ value: true }));
15682-
/* eslint-disable @typescript-eslint/naming-convention, import/no-import-module-exports */
15680+
/* eslint-disable @typescript-eslint/naming-convention */
1568315681
const core = __importStar(__nccwpck_require__(2186));
1568415682
const utils_1 = __nccwpck_require__(3030);
1568515683
const plugin_paginate_rest_1 = __nccwpck_require__(4193);

.github/actions/javascript/awaitStagingDeploys/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12457,7 +12457,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
1245712457
return (mod && mod.__esModule) ? mod : { "default": mod };
1245812458
};
1245912459
Object.defineProperty(exports, "__esModule", ({ value: true }));
12460-
/* eslint-disable @typescript-eslint/naming-convention, import/no-import-module-exports */
12460+
/* eslint-disable @typescript-eslint/naming-convention */
1246112461
const core = __importStar(__nccwpck_require__(2186));
1246212462
const utils_1 = __nccwpck_require__(3030);
1246312463
const plugin_paginate_rest_1 = __nccwpck_require__(4193);

.github/actions/javascript/bumpVersion/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3600,7 +3600,6 @@ const patch_1 = __importDefault(__nccwpck_require__(2866));
36003600
const prerelease_1 = __importDefault(__nccwpck_require__(4016));
36013601
const util_1 = __nccwpck_require__(3837);
36023602
// Disabling lint on the next two imports due to a bug in @dword-design/import-alias/prefer-alias
3603-
// eslint-disable-next-line
36043603
const versionUpdater = __importStar(__nccwpck_require__(8982));
36053604
const exec = (0, util_1.promisify)(child_process_1.exec);
36063605
// PlistBuddy executable path

.github/actions/javascript/checkAndroidStatus/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737200,7 +737200,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
737200737200
return (mod && mod.__esModule) ? mod : { "default": mod };
737201737201
};
737202737202
Object.defineProperty(exports, "__esModule", ({ value: true }));
737203-
/* eslint-disable @typescript-eslint/naming-convention, import/no-import-module-exports */
737203+
/* eslint-disable @typescript-eslint/naming-convention */
737204737204
const core = __importStar(__nccwpck_require__(42186));
737205737205
const utils_1 = __nccwpck_require__(73030);
737206737206
const plugin_paginate_rest_1 = __nccwpck_require__(64193);

.github/actions/javascript/checkDeployBlockers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11724,7 +11724,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
1172411724
return (mod && mod.__esModule) ? mod : { "default": mod };
1172511725
};
1172611726
Object.defineProperty(exports, "__esModule", ({ value: true }));
11727-
/* eslint-disable @typescript-eslint/naming-convention, import/no-import-module-exports */
11727+
/* eslint-disable @typescript-eslint/naming-convention */
1172811728
const core = __importStar(__nccwpck_require__(2186));
1172911729
const utils_1 = __nccwpck_require__(3030);
1173011730
const plugin_paginate_rest_1 = __nccwpck_require__(4193);

0 commit comments

Comments
 (0)