Files
self/package.json
Justin Hernandez b841b19d96 Improve manual mobile deploy workflow and docs (#728)
* Add basic Fastlane helper tests

* Upgrade fastlane and enhance helper tests (#738)

* simplify mobile deploy pipelines and make them manual. update readme

* update fastlane dev readme

* update tests and add helper script

* cr feedback, update tests, revert circuits package.json sort change

* tweaks

* fix slack

* cr feedback and fixes

* add better cjs eslint support

* save wip. add confirmation check script. update scripts

* remove auto increment feature

* migrate readme items over to DEV due to fastlane auto regen docs flow

* use regular xcode

* fix hermes compiler path

* coderabbit feedback

* reinstall when on local dev

* fix upload

* simplify

* simplify confirmation feedback with tests

* fix mobile deploys

* cr feedback

* test iOS building

* fix trigger logic

* cr feedback

* updates

* fix env var

* fix order

* re-enable upload to testflight for ios

* updated notes
2025-07-03 22:32:14 -07:00

29 lines
1.0 KiB
JSON

{
"name": "self-workspace-root",
"workspaces": [
"app",
"circuits",
"common",
"contracts",
"prover/tests",
"sdk/*"
],
"scripts": {
"build": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run build",
"format": "yarn workspaces foreach --parallel -i --all --exclude self-workspace-root run format",
"gitleaks": "gitleaks protect --staged --redact --config=.gitleaks.toml",
"postinstall": "patch-package",
"lint": "yarn workspaces foreach --parallel -i --all --exclude self-workspace-root run lint",
"prepare": "husky",
"sort-package-jsons": "find . -name 'package.json' -not -path './node_modules/*' -not -path './*/node_modules/*' | xargs npx sort-package-json",
"types": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run types "
},
"devDependencies": {
"gitleaks": "1.0.0",
"husky": "9.1.7",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
},
"packageManager": "yarn@4.6.0"
}