Skip to content

Commit 4380637

Browse files
committed
fix: correct links in skill / single isBoolean import
1 parent c4b3335 commit 4380637

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.agents/skills/ts-js-validation/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Set one clear default path so the agent does not choose randomly between options
4848

4949
## Command sequence
5050

51-
Run these root `package.json` scripts in order. **Canonical checklist:** [validation-checklist.md](../../okf-bundle/testing/validation-checklist.md). **Agent allowlist (no improvisation):** [agent-command-policy.md](../../okf-bundle/testing/agent-command-policy.md). OKF bundle wins if this skill disagrees.
51+
Run these root `package.json` scripts in order. **Canonical checklist:** [validation-checklist.md](../../../okf-bundle/testing/validation-checklist.md). **Agent allowlist (no improvisation):** [agent-command-policy.md](../../../okf-bundle/testing/agent-command-policy.md). OKF bundle wins if this skill disagrees.
5252

5353
1. `yarn lerna:prepare`
5454
2. `yarn tsc:compile`
@@ -61,7 +61,7 @@ Run these root `package.json` scripts in order. **Canonical checklist:** [valida
6161

6262
## Gotchas
6363

64-
- **Forbidden:** `yarn workspace … prepare`, `cd packages/<pkg> && yarn prepare/build`, `yarn jet`, `npx jet` — see [agent command policy](../../okf-bundle/testing/agent-command-policy.md). On failure, fix product code and re-run the **same** canonical command.
64+
- **Forbidden:** `yarn workspace … prepare`, `cd packages/<pkg> && yarn prepare/build`, `yarn jet`, `npx jet` — see [agent command policy](../../../okf-bundle/testing/agent-command-policy.md). On failure, fix product code and re-run the **same** canonical command.
6565
- `yarn format:js` writes changes across `packages/**/*.{js,ts,tsx}`. Check the diff after formatting and do not revert user changes.
6666
- Run commands from the repository root so workspace resolution, root `tsconfig.json`, and Jest configuration are consistent.
6767
- `yarn lerna:prepare` may rebuild or refresh package artifacts needed before TypeScript or tests run.

packages/analytics/lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import {
2121
isAlphaNumericUnderscore,
2222
isE164PhoneNumber,
2323
isIOS,
24+
isBoolean,
2425
isNull,
2526
isNumber,
2627
isObject,
@@ -39,7 +40,6 @@ import './types/internal';
3940

4041
// Internal types are now available through module declarations in app package
4142
import { setReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
42-
import { isBoolean } from '@react-native-firebase/app/dist/module/common';
4343

4444
import { validateStruct, validateCompound } from './struct';
4545
import { RNFBAnalyticsModule } from './web/RNFBAnalyticsModule';

0 commit comments

Comments
 (0)