Fix CI: remove root package.json, fix mobile overrides, update workflow

This commit is contained in:
2026-01-18 01:13:24 +03:00
parent 2855c0b106
commit c75ae9a7f5
3 changed files with 8 additions and 45 deletions
+3 -1
View File
@@ -121,7 +121,9 @@ jobs:
- name: Install dependencies
working-directory: ./pezkuwi-sdk-ui
run: yarn install
run: |
touch ../yarn.lock
yarn install
- name: Build Project
working-directory: ./pezkuwi-sdk-ui
+5 -5
View File
@@ -33,10 +33,10 @@
"dependencies": {
"@babel/runtime": "^7.28.4",
"@pezkuwi/api": "^16.5.9",
"@pezkuwi/keyring": "^14.0.11",
"@pezkuwi/keyring": "14.0.11",
"@pezkuwi/types": "^16.5.9",
"@pezkuwi/util": "^14.0.11",
"@pezkuwi/util-crypto": "^14.0.11",
"@pezkuwi/util": "14.0.11",
"@pezkuwi/util-crypto": "14.0.11",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-picker/picker": "2.11.1",
"@react-navigation/bottom-tabs": "^7.8.5",
@@ -90,8 +90,8 @@
},
"devDependencies": {
"@expo/ngrok": "^4.1.0",
"@pezkuwi/extension-dapp": "^0.62.18",
"@pezkuwi/extension-inject": "^0.62.18",
"@pezkuwi/extension-dapp": "^0.62.20",
"@pezkuwi/extension-inject": "^0.62.20",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/invariant": "^2",
-39
View File
@@ -1,39 +0,0 @@
{
"name": "pwap",
"version": "1.0.0",
"private": true,
"description": "Pezkuwi Web App Projects - Monorepo for web, mobile, and SDK UI applications",
"scripts": {
"build": "npm run build:web && npm run build:sdk-ui",
"build:web": "cd web && npm install && npm run build",
"build:sdk-ui": "cd pezkuwi-sdk-ui && yarn install && yarn build",
"build:all": "npm run build:web && npm run build:sdk-ui && npm run test:mobile",
"dev:web": "cd web && npm run dev",
"dev:mobile": "cd mobile && npm run dev",
"dev:sdk-ui": "cd pezkuwi-sdk-ui && yarn start",
"lint": "npm run lint:web && npm run lint:mobile",
"lint:web": "cd web && npm run lint",
"lint:mobile": "cd mobile && npm run lint",
"lint:sdk-ui": "cd pezkuwi-sdk-ui && yarn lint",
"test": "npm run test:web && npm run test:mobile",
"test:web": "cd web && npm run test",
"test:mobile": "cd mobile && npm run test",
"test:sdk-ui": "cd pezkuwi-sdk-ui && yarn test",
"install:all": "npm run install:web && npm run install:mobile && npm run install:sdk-ui",
"install:web": "cd web && npm install",
"install:mobile": "cd mobile && npm install",
"install:sdk-ui": "cd pezkuwi-sdk-ui && yarn install",
"clean": "npm run clean:web && npm run clean:mobile && npm run clean:sdk-ui",
"clean:web": "cd web && rm -rf node_modules dist",
"clean:mobile": "cd mobile && rm -rf node_modules",
"clean:sdk-ui": "cd pezkuwi-sdk-ui && yarn clean && rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/pezkuwichain/pwap.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18"
}
}