-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from vizzuhq/update-yarn-and-depends
Update yarn and dependencies
- Loading branch information
Showing
36 changed files
with
3,405 additions
and
3,927 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs | ||
yarnPath: .yarn/releases/yarn-4.5.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { EslintTypeScriptConfig } from '@vizzu/eslint-config' | ||
|
||
export default [ | ||
...EslintTypeScriptConfig, | ||
{ | ||
files: ['**/*.ts', '**/*.tsx', '**/*.mts', '**/*.cts'], | ||
languageOptions: { | ||
parserOptions: { | ||
ecmaVersion: 2022, | ||
project: './tsconfig.eslint.json', | ||
projectService: false | ||
} | ||
} | ||
}, | ||
{ | ||
ignores: [ | ||
'**/node_modules/**', | ||
'**/build/**', | ||
'**/dist/**', | ||
'**/.vscode/**', | ||
'**/.yarn/**', | ||
'**/tmp/**', | ||
'**/demo/**', | ||
'**/tests/**', | ||
'**/.pnp*', | ||
'**/*.d.ts' | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,40 @@ | ||
{ | ||
"private": true, | ||
"packageManager": "yarn@4.0.2", | ||
"packageManager": "yarn@4.5.0", | ||
"workspaces": [ | ||
"plugins/**/*" | ||
], | ||
"scripts": { | ||
"postinstall": "husky install", | ||
"format": "prettier -c .", | ||
"lint": "eslint --ext .js,.mjs,.cjs,.ts,.tsx .", | ||
"lint": "eslint", | ||
"ci": "yarn format && yarn lint", | ||
"fix": "yarn fix-format && yarn fix-lint", | ||
"fix-format": "prettier -w .", | ||
"fix-lint": "eslint --fix --ext .js,.mjs,.cjs,.ts,.tsx .", | ||
"fix-lint": "eslint --fix .", | ||
"update-vizzu": "node ./tools/updateVizzuMinorVersion.cjs" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.5.12", | ||
"@typescript-eslint/eslint-plugin": "^7.2.0", | ||
"@typescript-eslint/parser": "^7.2.0", | ||
"@vizzu/eslint-config": "^0.2.0", | ||
"@types/jest": "^29.5.13", | ||
"@typescript-eslint/eslint-plugin": "^8.8.0", | ||
"@typescript-eslint/parser": "^8.8.0", | ||
"@vizzu/eslint-config": "^1.0.0", | ||
"@vizzu/prettier-config": "^0.1.0", | ||
"esbuild": "^0.20.1", | ||
"esbuild": "^0.24.0", | ||
"esbuild-plugin-copy": "^2.1.1", | ||
"esbuild-plugin-polyfill-node": "^0.3.0", | ||
"eslint": "^8.57.0", | ||
"eslint": "^9.11.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-standard": "^17.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-n": "^16.6.2", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"glob": "^10.3.10", | ||
"husky": "^9.0.11", | ||
"lint-staged": "^15.2.2", | ||
"prettier": "^3.2.5", | ||
"typescript": "^5.4.2", | ||
"vizzu": "~0.13.0" | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-n": "^17.10.3", | ||
"eslint-plugin-promise": "^7.1.0", | ||
"glob": "^11.0.0", | ||
"husky": "^9.1.6", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "^3.3.3", | ||
"typescript": "^5.5.2", | ||
"vizzu": "~0.14.0" | ||
}, | ||
"prettier": "@vizzu/prettier-config", | ||
"eslintConfig": { | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.ts", | ||
"*.tsx" | ||
], | ||
"extends": [ | ||
"@vizzu/eslint-config/typescript" | ||
] | ||
}, | ||
{ | ||
"files": [ | ||
"*.js", | ||
"*.mjs", | ||
"*.cjs" | ||
], | ||
"extends": [ | ||
"@vizzu/eslint-config/standard" | ||
] | ||
} | ||
] | ||
} | ||
"prettier": "@vizzu/prettier-config" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.