|
9 | 9 | "lerna:clean": "lerna clean", |
10 | 10 | "build:all:clean": "lerna run build:clean", |
11 | 11 | "build:all:build": "lerna run build", |
| 12 | + "test:functions:build": "cd .github/workflows/scripts/functions && yarn build", |
| 13 | + "codegen:all": "lerna run codegen", |
12 | 14 | "lint": "yarn lint:js && yarn lint:android && yarn lint:ios:check", |
13 | 15 | "lint:js": "eslint packages/* --max-warnings=0", |
14 | | - "lint:android": "(google-java-format --set-exit-if-changed --replace --glob=\"packages/*/android/src/**/*.java\" || (echo \"\n\nandroid formatting error - please re-run\n\n\" && exit 1)) && (git diff --exit-code packages/*/android/src || (echo \"\n\nandroid files changed from linting, please examine and commit result\n\n\" && exit 1))", |
15 | | - "lint:ios:check": "clang-format --glob=\"packages/*/ios/**/*.{h,cpp,m,mm}\" --style=Google -n -Werror", |
16 | | - "lint:ios:fix": "clang-format -i --glob=\"packages/*/ios/**/*.{h,cpp,m,mm}\" --style=Google", |
| 16 | + "lint:android": "(find packages/*/android/src -name '*.java' -not -path '*/generated/*' -print0 | xargs -0 google-java-format --set-exit-if-changed --replace || (echo \"\n\nandroid formatting error - please re-run\n\n\" && exit 1)) && (git diff --exit-code packages/*/android/src || (echo \"\n\nandroid files changed from linting, please examine and commit result\n\n\" && exit 1))", |
| 17 | + "lint:ios:check": "find packages/*/ios -type f \\( -name '*.h' -o -name '*.cpp' -o -name '*.m' -o -name '*.mm' \\) -not -path '*/generated/*' -print0 | xargs -0 clang-format --style=Google -n -Werror", |
| 18 | + "lint:ios:fix": "find packages/*/ios -type f \\( -name '*.h' -o -name '*.cpp' -o -name '*.m' -o -name '*.mm' \\) -not -path '*/generated/*' -print0 | xargs -0 clang-format -i --style=Google", |
17 | 19 | "lint:markdown": "prettier --check \"docs/**/*.md\"", |
18 | 20 | "lint:report": "eslint --output-file=eslint-report.json --format=json . --ext .js,.jsx,.ts,.tsx", |
19 | 21 | "lint:spellcheck": "spellchecker --quiet --files=\"docs/**/*.md\" --dictionaries=\"./.spellcheck.dict.txt\" --reports=\"spelling.json\" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter", |
|
67 | 69 | "@babel/plugin-proposal-private-property-in-object": "^7.21.11", |
68 | 70 | "@babel/plugin-transform-class-properties": "^7.27.1", |
69 | 71 | "@babel/preset-env": "^7.28.5", |
70 | | - "@eslint/eslintrc": "^3.3.1", |
| 72 | + "@eslint/eslintrc": "^3.3.3", |
71 | 73 | "@eslint/js": "^9.39.1", |
72 | 74 | "@firebase/rules-unit-testing": "^5.0.0", |
73 | | - "@inquirer/prompts": "^7.10.0", |
| 75 | + "@inquirer/prompts": "^7.10.1", |
74 | 76 | "@octokit/core": "^7.0.6", |
| 77 | + "@react-native-community/cli": "latest", |
75 | 78 | "@tsconfig/node-lts": "^22.0.4", |
76 | 79 | "@types/react": "~19.0.14", |
77 | 80 | "@types/react-native": "^0.73.0", |
78 | | - "@typescript-eslint/eslint-plugin": "^8.48.0", |
79 | | - "@typescript-eslint/parser": "^8.48.0", |
| 81 | + "@typescript-eslint/eslint-plugin": "^8.48.1", |
| 82 | + "@typescript-eslint/parser": "^8.48.1", |
80 | 83 | "babel-jest": "^30.2.0", |
81 | 84 | "clang-format": "^1.8.0", |
82 | 85 | "conventional-changelog-cli": "^4.1.0", |
|
87 | 90 | "eslint-plugin-prettier": "^5.5.4", |
88 | 91 | "eslint-plugin-react": "^7.37.5", |
89 | 92 | "firebase": "^12.6.0", |
90 | | - "firebase-tools": "^14.26.0", |
| 93 | + "firebase-tools": "^14.27.0", |
91 | 94 | "genversion": "^3.2.0", |
92 | 95 | "google-java-format": "^2.0.4", |
93 | 96 | "jest": "^30.2.0", |
94 | | - "lerna": "^9.0.1", |
| 97 | + "lerna": "^9.0.3", |
95 | 98 | "patch-package": "^8.0.1", |
96 | | - "prettier": "^3.6.2", |
| 99 | + "prettier": "^3.7.4", |
97 | 100 | "regenerator-transform": "^0.15.2", |
98 | 101 | "rimraf": "^6.1.2", |
99 | 102 | "run-script-os": "^1.1.6", |
100 | 103 | "shelljs": "^0.10.0", |
101 | | - "spellchecker-cli": "^7.0.1", |
102 | | - "ts-jest": "^29.4.5", |
| 104 | + "spellchecker-cli": "^7.0.2", |
| 105 | + "ts-jest": "^29.4.6", |
103 | 106 | "ts-node": "^10.9.2", |
104 | 107 | "typescript": "^5.9.3" |
105 | 108 | }, |
|
112 | 115 | "tests" |
113 | 116 | ] |
114 | 117 | }, |
115 | | - "packageManager": "yarn@4.10.3" |
| 118 | + "packageManager": "yarn@4.12.0" |
116 | 119 | } |
0 commit comments