Skip to content

Commit 66202b2

Browse files
callstack-gh-bot[bot]satya164
authored andcommitted
chore: upgrade dependencies
1 parent 18e542f commit 66202b2

File tree

19 files changed

+2792
-4720
lines changed

19 files changed

+2792
-4720
lines changed

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"@shikijs/transformers": "^3.13.0"
1616
},
1717
"devDependencies": {
18-
"@types/react": "^19.2.2"
18+
"@types/react": "^19.2.14"
1919
}
2020
}

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@
1919
"release": "lerna publish"
2020
},
2121
"devDependencies": {
22-
"@commitlint/config-conventional": "^17.0.2",
23-
"@eslint/compat": "^1.2.7",
24-
"@eslint/eslintrc": "^3.3.0",
25-
"@eslint/js": "^9.22.0",
26-
"@evilmartians/lefthook": "^1.5.0",
27-
"@lerna-lite/cli": "^4.11.0",
28-
"@lerna-lite/publish": "^4.11.1",
29-
"@lerna-lite/run": "^4.11.1",
30-
"@vitest/eslint-plugin": "^1.1.39",
31-
"commitlint": "^17.0.2",
32-
"concurrently": "^7.2.2",
33-
"eslint": "^9.26.0",
34-
"eslint-config-satya164": "^5.1.1",
35-
"globals": "^16.0.0",
36-
"prettier": "^3.5.3",
22+
"@commitlint/config-conventional": "^20.5.0",
23+
"@eslint/compat": "^2.0.3",
24+
"@eslint/eslintrc": "^3.3.5",
25+
"@eslint/js": "^9.39.4",
26+
"@evilmartians/lefthook": "^2.1.4",
27+
"@lerna-lite/cli": "^4.11.5",
28+
"@lerna-lite/publish": "^4.11.5",
29+
"@lerna-lite/run": "^4.11.5",
30+
"@vitest/eslint-plugin": "^1.6.14",
31+
"commitlint": "^20.5.0",
32+
"concurrently": "^9.2.1",
33+
"eslint": "^9.39.4",
34+
"eslint-config-satya164": "^5.1.8",
35+
"globals": "^17.4.0",
36+
"prettier": "^3.8.1",
3737
"typescript": "^5.8.3"
3838
},
3939
"resolutions": {

packages/create-react-native-library/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@
4040
"prepare": "babel --extensions .ts,.tsx src --out-dir lib --ignore '**/__tests__/**' --source-maps --delete-dir-on-start"
4141
},
4242
"dependencies": {
43-
"cross-spawn": "^7.0.3",
44-
"dedent": "^0.7.0",
45-
"ejs": "^3.1.8",
46-
"fs-extra": "^10.1.0",
47-
"get-latest-version": "^5.1.0",
48-
"github-username": "^6.0.0",
49-
"kleur": "^4.1.4",
50-
"ora": "^5.4.1",
43+
"cross-spawn": "^7.0.6",
44+
"dedent": "^1.7.2",
45+
"ejs": "^5.0.1",
46+
"fs-extra": "^11.3.4",
47+
"get-latest-version": "^6.0.1",
48+
"github-username": "^9.0.0",
49+
"kleur": "^4.1.5",
50+
"ora": "^9.3.0",
5151
"pigment": "^0.4.1",
52-
"validate-npm-package-name": "^4.0.0"
52+
"validate-npm-package-name": "^7.0.2"
5353
},
5454
"devDependencies": {
55-
"@babel/cli": "^7.24.8",
56-
"@babel/core": "^7.25.2",
57-
"@babel/preset-env": "^7.25.2",
58-
"@babel/preset-typescript": "^7.24.7",
59-
"@commitlint/config-conventional": "^17.0.2",
60-
"@types/cross-spawn": "^6.0.2",
61-
"@types/dedent": "^0.7.0",
62-
"@types/ejs": "^3.1.1",
63-
"@types/fs-extra": "^9.0.13",
64-
"@types/validate-npm-package-name": "^3.0.3"
55+
"@babel/cli": "^7.28.6",
56+
"@babel/core": "^7.29.0",
57+
"@babel/preset-env": "^7.29.2",
58+
"@babel/preset-typescript": "^7.28.5",
59+
"@commitlint/config-conventional": "^20.5.0",
60+
"@types/cross-spawn": "^6.0.6",
61+
"@types/dedent": "^0.7.2",
62+
"@types/ejs": "^3.1.5",
63+
"@types/fs-extra": "^11.0.4",
64+
"@types/validate-npm-package-name": "^4.0.2"
6565
}
6666
}

packages/create-react-native-library/src/exampleApp/generateExampleApp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import dedent from 'dedent';
22
import fs from 'fs-extra';
3-
import getLatestVersion from 'get-latest-version';
3+
import { getLatestVersion } from 'get-latest-version';
44
import https from 'https';
55
import path from 'path';
66
import { SUPPORTED_MONOREPO_CONFIG_VERSION } from '../constants';

packages/create-react-native-library/src/utils/configureTools.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ const TURBOREPO = {
4242
};
4343

4444
export const AVAILABLE_TOOLS = {
45-
'eslint': ESLINT,
46-
'jest': JEST,
47-
'lefthook': LEFTHOOK,
45+
eslint: ESLINT,
46+
jest: JEST,
47+
lefthook: LEFTHOOK,
4848
'release-it': RELEASE_IT,
4949
} as const satisfies Record<string, Tool>;
5050

packages/create-react-native-library/templates/common/$package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<% if (project.moduleConfig === 'nitro-modules' || project.viewConfig === 'nitro-view') { -%>
8282
"react-native-nitro-modules": "^<%- versions.nitro %>",
8383
<% } -%>
84-
"typescript": "^5.9.3"
84+
"typescript": "^6.0.2"
8585
},
8686
"peerDependencies": {
8787
"react": "*",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"devDependencies": {
3-
"turbo": "^2.8.17"
3+
"turbo": "^2.8.21"
44
}
55
}

packages/react-native-builder-bob/babel-config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
/* eslint-disable @typescript-eslint/no-require-imports, import-x/no-commonjs, no-undef */
1+
/* eslint-disable import-x/no-commonjs, no-undef */
22

33
const path = require('path');
4-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
54
// @ts-ignore -- Ignore missing types for this module
65
const { loadConfig } = require('./lib/utils/loadConfig');
76

packages/react-native-builder-bob/babel-preset.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint-disable @typescript-eslint/no-require-imports, import-x/no-commonjs, no-undef */
1+
/* eslint-disable import-x/no-commonjs, no-undef */
22

33
const browserslist = require('browserslist');
44

@@ -11,11 +11,9 @@ const browserslist = require('browserslist');
1111
*/
1212
module.exports = function (api, options, cwd) {
1313
const opt = (name) =>
14-
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
1514
options[name] !== undefined
1615
? options[name]
17-
: // eslint-disable-next-line @typescript-eslint/no-unsafe-return
18-
api.caller((caller) => (caller != null ? caller[name] : undefined));
16+
: api.caller((caller) => (caller != null ? caller[name] : undefined));
1917

2018
const supportsStaticESM = opt('supportsStaticESM');
2119
const rewriteImportExtensions = opt('rewriteImportExtensions');

packages/react-native-builder-bob/metro-config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint-disable @typescript-eslint/no-deprecated, @typescript-eslint/no-require-imports, import-x/no-commonjs, no-undef */
1+
/* eslint-disable import-x/no-commonjs, no-undef */
22

33
const { withMetroConfig } = require('react-native-monorepo-config');
44

@@ -16,5 +16,4 @@ const { withMetroConfig } = require('react-native-monorepo-config');
1616
* @returns {import('metro-config').MetroConfig} Metro configuration
1717
*/
1818
exports.getConfig = (baseConfig, { root, project }) =>
19-
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
2019
withMetroConfig(baseConfig, { root, dirname: project });

0 commit comments

Comments
 (0)