Skip to content

Commit

Permalink
chore: update node to 22 (#7973)
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud authored Nov 22, 2024
1 parent 74a656b commit 8f17df2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"prettier --check"
]
},
"packageManager": "yarn@4.5.0",
"packageManager": "yarn@4.5.2",
"workspaces": {
"packages": [
"benchmark",
Expand Down
3 changes: 2 additions & 1 deletion packages/token-translator/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true
"strict": true,
"skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"],
"exclude": ["**/*.test.ts", "node_modules"]
Expand Down
2 changes: 1 addition & 1 deletion packages/vkui-floating-ui/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as fsPromises from 'node:fs/promises';
import * as path from 'node:path';
import * as url from 'node:url';
import swc from '@swc/core';
import pkg from './package.json' assert { type: 'json' };
import pkg from './package.json' with { type: 'json' };

function removePathFromStart(subPackagePath) {
return subPackagePath.replace(/^\.\//, '');
Expand Down

0 comments on commit 8f17df2

Please sign in to comment.