Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quadre-eslint to 7.0.0 #354

Merged
merged 1 commit into from
Sep 1, 2024
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"test:all": "gulp test-integration --results=TEST-all"
},
"defaultExtensions": {
"quadre-eslint": "6.0.1",
"quadre-eslint": "7.0.0",
"quadre-git": "1.0.0-alpha.3"
},
"dependencies": {
Expand Down
27 changes: 12 additions & 15 deletions src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"homepage": "https://github.com/quadre-code/quadre",
"version": "2.0.0-alpha.7",
"apiVersion": "1.15.0",
"electronVersion": "31.4.0",
"issues": {
"url": "https://github.com/quadre-code/quadre/issues"
},
Expand Down Expand Up @@ -128,11 +129,7 @@
"tsc": "tsc --project src && npm run webpack",
"build": "gulp copy-src-dist && gulp build && npm run tsc",
"build-optimized": "npm run build && gulp optimize",
"test": "npm run tslint",
"tslint:app": "tslint -c tslint.json --project app/tsconfig.json -t stylish",
"tslint:src": "tslint -c src/tslint.json --project src/tsconfig.json -t stylish",
"tslint": "npm run tslint:app && npm run tslint:src",
"lint": "npm run tslint && gulp eslint",
"lint": "gulp eslint",
"format": "gulp format",
"dev": "concurrently --kill-others \"gulp watch\" \"tsc --watch --project src\" \"npm run webpack -- --watch\"",
"start": "electron .",
Expand All @@ -141,7 +138,8 @@
"publish-win": "npm run build-optimized && electron-builder -w --publish onTagOrDraft",
"publish-mac": "npm run build-optimized && electron-builder -m --publish onTagOrDraft",
"publish-linux": "npm run build-optimized && electron-builder -l --publish onTagOrDraft",
"test:prepare:ci": "gulp test && npm run tslint && gulp copy-test-dist",
"test:prepare:ci": "gulp test && gulp copy-test-dist",
"test:node": "jasmine dist/www/extensibility/node/spec/*.spec.js",
"test:unit": "gulp test-integration --suite=unit --spec=all --results=TEST-unit",
"test:integration": "gulp test-integration --suite=integration --spec=all --results=TEST-integration",
"test:mainview": "gulp test-integration --suite=mainview --spec=all --results=TEST-mainview",
Expand All @@ -151,7 +149,7 @@
"test:all": "gulp test-integration --results=TEST-all"
},
"defaultExtensions": {
"quadre-eslint": "6.0.1",
"quadre-eslint": "7.0.0",
"quadre-git": "1.0.0-alpha.3"
},
"dependencies": {
Expand Down Expand Up @@ -189,17 +187,17 @@
"@types/ws": "0.0.40",
"@types/xml2js": "^0.4.11",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "^7.5.0",
"cross-spawn": "^7.0.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"electron": "^31.4.0",
"electron-builder": "^25.0.5",
"electron-packager": "^17.1.1",
"eslint": "^8.30.0",
"eslint-config-moody-tsx": "^2.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint": "^8.57.0",
"eslint-config-moody-tsx": "^2.1.0",
"eslint-plugin-react": "^7.35.0",
"fancy-log": "^2.0.0",
"get-port": "^4.2.0",
"glob": "^7.1.4",
Expand All @@ -209,7 +207,7 @@
"gulp-rename": "^2.0.0",
"gulp-watch": "^5.0.1",
"iconv-lite": "^0.6.3",
"jasmine-node": "1.11.0",
"jasmine": "^5.2.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.1",
Expand All @@ -221,8 +219,7 @@
"transpile-webpack-plugin": "^1.1.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslint": "^5.20.1",
"typescript": "~4.9.4",
"typescript": "^5.5.4",
"vscode-languageserver": "5.3.0-next.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
Expand Down
Loading