Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions .ncurc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"removeRange": true
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
1 change: 1 addition & 0 deletions apps/playground/.npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node-linker=hoisted
save-exact=true
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint": "node scripts/check-exact-deps.mjs && turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test --no-cache",
"test:coverage": "turbo run test:coverage --no-cache"
},
"devDependencies": {
"prettier": "^3.8.1",
"turbo": "^2.8.8",
"prettier": "3.8.1",
"turbo": "2.8.20",
"typescript": "5.9.3",
"rimraf": "6.1.2"
"rimraf": "6.1.3"
},
"packageManager": "pnpm@10.29.3",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"on-headers": ">=1.1.0",
"glob": ">=11.1.0",
"node-forge": ">=1.3.2",
"js-yaml": ">=4.1.1",
"on-headers": "1.1.0",
"glob": "13.0.4",
"node-forge": "1.3.3",
"js-yaml": "4.1.1",
"tar": "7.5.7"
}
}
Expand Down
4 changes: 3 additions & 1 deletion packages/react-native/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
const project = "tsconfig.json";

module.exports = {
extends: [
"@vercel/style-guide/eslint/browser",
"@vercel/style-guide/eslint/typescript",
"@vercel/style-guide/eslint/react",
].map(require.resolve),
parserOptions: {
project: "tsconfig.json",
project,
tsconfigRootDir: __dirname,
},
globals: {
Expand Down
1 change: 1 addition & 0 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"devDependencies": {
"@types/react": "19.2.14",
"@vercel/style-guide": "6.0.0",
"@vitest/eslint-plugin": "1.6.12",
Comment thread
mattinannt marked this conversation as resolved.
"@vitest/coverage-v8": "4.0.18",
"react": "19.2.4",
"react-native": "0.84.0",
Expand Down
Loading
Loading