Skip to content

Commit

Permalink
upgrade all packages
Browse files Browse the repository at this point in the history
fix erroneous type in QueryBuilder
  • Loading branch information
themetalfleece committed Aug 4, 2023
1 parent 81ce1b4 commit 35a2392
Show file tree
Hide file tree
Showing 3 changed files with 766 additions and 513 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,31 @@
"dependencies": {
"@types/revalidator": "^0.3.8",
"clone": "^2.1.2",
"dotenv": "^16.0.3",
"neo4j-driver": "^5.9.0",
"dotenv": "^16.3.1",
"neo4j-driver": "^5.11.0",
"revalidator": "^0.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/clone": "^2.1.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"scripts": {
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --loglevel silent --write src/**/*.ts",
"format": "prettier --log-level silent --write src/**/*.ts",
"prepare": "rimraf -rf dist && tsc",
"prebuild": "yarn lint && yarn format",
"build": "tsc",
Expand All @@ -57,4 +57,4 @@
"url": "https://github.com/themetalfleece/neogma/issues"
},
"homepage": "https://github.com/themetalfleece/neogma#readme"
}
}
2 changes: 1 addition & 1 deletion src/Queries/QueryBuilder/QueryBuilder.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export type MatchLiteralI = {
/** literal string */
literal: string;
/** optional match */
optional?: string;
optional?: boolean;
};
export const isMatchLiteral = (
param: MatchI['match'],
Expand Down
Loading

0 comments on commit 35a2392

Please sign in to comment.