Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ jobs:
node-version: "20"
cache: "yarn"

- name: Check dependencies
- name: Check lock for duplications
run: yarn dedupe --check

- name: Install dependencies
run: yarn install --immutable

- name: Check dependencies alignment
run: yarn check-dependencies

- name: Run Lint
run: yarn ci:lint
working-directory: website
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
"build": "yarn --cwd website build",
"build:fast": "yarn --cwd website build:fast",
"serve": "yarn --cwd website serve",
"prepare": "husky"
"prepare": "husky",
"check-dependencies": "manypkg check"
},
"dependencies": {
"devDependencies": {
"@manypkg/cli": "^0.25.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.6.2",
Expand All @@ -30,5 +32,8 @@
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "8.39.1"
},
"packageManager": "[email protected]"
}
26 changes: 13 additions & 13 deletions scripts/lint-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
"tsc-examples": "./bin/tsc-examples.js"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.26.10",
"@react-native-community/slider": "^4.5.3",
"@react-native/babel-preset": "^0.76.0-rc.2",
"@react-native/eslint-config": "^0.76.0-rc.2",
"@react-native/typescript-config": "^0.76.0-rc.2",
"@types/react": "^18.2.79",
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/runtime": "^7.28.3",
"@react-native-community/slider": "^4.5.7",
"@react-native/babel-preset": "^0.81.0",
"@react-native/eslint-config": "^0.81.0",
"@react-native/typescript-config": "^0.81.0",
"@types/react": "^19.1.10",
"eslint": "^8.57.1",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"react": "18.3.1",
"react-native": "^0.76.0-rc.2",
"react-native-safe-area-context": "^4.11.0",
"typescript": "5.5.4"
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-native": "^0.81.0",
"react-native-safe-area-context": "^5.6.0",
"typescript": "^5.9.2"
}
}
10 changes: 5 additions & 5 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"@docusaurus/plugin-pwa": "3.8.1",
"@docusaurus/preset-classic": "3.8.1",
"docusaurus-plugin-sass": "^0.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-github-btn": "^1.4.0",
"sass": "1.76.0"
},
Expand All @@ -69,14 +69,14 @@
"@react-native-website/lint-examples": "0.0.0",
"@react-native-website/update-redirects": "0.0.0",
"@types/google.analytics": "^0.0.46",
"@types/react": "^18.2.79",
"@types/react": "^19.1.10",
"alex": "^11.0.1",
"case-police": "^1.0.0",
"eslint": "^8.57.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"prettier": "^3.5.3",
"prettier": "^3.6.2",
"remark-cli": "^12.0.1",
"typescript": "^5.7.2"
"typescript": "^5.9.2"
}
}
Loading