Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit c7f8929

Browse files
committed
bump version
1 parent ce824ea commit c7f8929

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

nx.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,13 @@
6464
}
6565
},
6666
"version": {
67-
"executor": "@jscutlery/semver:version",
67+
"cache": false,
68+
"executor": "nx:run-commands",
6869
"options": {
69-
"syncVersions": true
70+
"cwd": "{projectRoot}",
71+
"commands": [
72+
"npm version patch"
73+
]
7074
}
7175
},
7276
"prepare": {

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"lint:no-cache": "eslint --ext=.ts .",
1313
"prepare": "husky install",
1414
"test": "nx run-many --target=test --all",
15-
"version": "nx run-many --target=version --all",
15+
"version": "nx run-many --target=version --all && git add . && git commit -m 'bump version' && git push",
1616
"publish:core": "cd dist/packages/nestjs-query-core && npm publish",
1717
"publish:gql": "cd dist/packages/nestjs-query-graphql && npm publish",
1818
"publish:typeorm": "cd dist/packages/nestjs-query-typeorm && npm publish",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rezonate/nestjs-query-core",
3-
"version": "1.0.0",
3+
"version": "6.0.6",
44
"description": "Base query package",
55
"author": "doug-martin <doug@dougamartin.com>",
66
"homepage": "https://github.com/Rezonate-io/nestjs-query#readme",

packages/query-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rezonate/nestjs-query-graphql",
3-
"version": "1.0.0",
3+
"version": "6.0.6",
44
"description": "Nestjs graphql query adapter",
55
"author": "doug-martin <doug@dougamartin.com>",
66
"homepage": "https://github.com/Rezonate-io/nestjs-query#readme",

packages/query-typeorm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rezonate/nestjs-query-typeorm",
3-
"version": "1.0.0",
3+
"version": "6.0.6",
44
"description": "Typeorm adapter for @rezonate/nestjs-query-core",
55
"author": "doug-martin <doug@dougamartin.com>",
66
"homepage": "https://github.com/Rezonate-io/nestjs-query#readme",

0 commit comments

Comments
 (0)