Bump build to test PACE polling (ios 127; android 66) (#591)

* bump builds

* update env.sample with new env vars, and add _NFC to mixpanel nfc var

* remove NDEF so we can keep target sdk version at 15

* add sort package json command

* sort all project package.json files

* enable hermes

* disable hermes

* revert disabling

* remove hermes
This commit is contained in:
Justin Hernandez
2025-06-06 09:29:26 -05:00
committed by GitHub
parent 09d06eba2e
commit 6d27b365c7
15 changed files with 57 additions and 55 deletions

View File

@@ -17,13 +17,13 @@
"scripts": {
"build": "tsc -build",
"build:deps": "yarn workspaces foreach --from @selfxyz/core --topological-dev --recursive run build",
"types": "yarn build",
"copy-abi": "bash scripts/copyAbi.sh",
"format": "prettier --write .",
"install-sdk": "yarn workspaces focus @selfxyz/core",
"lint": "prettier --check .",
"prepublishOnly": "npm run build",
"publish": "yarn npm publish --access public"
"publish": "yarn npm publish --access public",
"types": "yarn build"
},
"dependencies": {
"@selfxyz/common": "workspace:^",

View File

@@ -7,11 +7,11 @@
},
"license": "MIT",
"author": "turnoffthiscomputer",
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
@@ -19,13 +19,13 @@
"scripts": {
"build": "tsc --build",
"build:deps": "yarn workspaces foreach --from @selfxyz/qrcode --topological-dev --recursive run build",
"types": "yarn build",
"format": "prettier --write .",
"install-sdk": "yarn workspace focus @selfxyz/qrcode",
"lint": "prettier --check .",
"prepublishOnly": "yarn build",
"publish": "yarn npm publish --access public",
"test": "echo 'no tests found'",
"publish": "yarn npm publish --access public"
"types": "yarn build"
},
"dependencies": {
"@selfxyz/common": "workspace:^",

View File

@@ -1,13 +1,14 @@
{
"name": "backend-api",
"version": "1.0.50",
"module": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/app.ts",
"types": "tsc --noEmit",
"init": "bash scripts/copy_abi.sh && bash scripts/copy_deployedAddress.sh",
"start:daemon": "bun run src/app.ts > app.log 2>&1 &",
"stop:daemon": "pkill -f 'bun run src/app.ts'"
"stop:daemon": "pkill -f 'bun run src/app.ts'",
"test": "echo \"Error: no test specified\" && exit 1",
"types": "tsc --noEmit"
},
"dependencies": {
"@elysiajs/swagger": "^1.2.0",
@@ -27,6 +28,5 @@
"@types/pg": "^8.11.11",
"bun-types": "latest",
"typescript": "^5.8.3"
},
"module": "index.ts"
}
}

View File

@@ -5,10 +5,10 @@
"type": "module",
"scripts": {
"build": "next build",
"types": "yarn build",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
"start": "next start",
"types": "yarn build"
},
"dependencies": {
"@emotion/react": "^11.13.3",