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

ignore some folders #32

Merged
merged 10 commits into from
Mar 30, 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
7 changes: 7 additions & 0 deletions .changeset/popular-doors-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"graphql-eventbus-google-pubsub": minor
"graphql-eventbus": patch
"graphql-eventbus-rabbitmq": patch
---

Update Google pubsub package"
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/examples
schedule:
interval: "monthly"
labels: [ ]
ignore:
- dependency-name: "*"
- package-ecosystem: "npm"
directory: "/website
schedule:
interval: "monthly"
labels: [ ]
ignore:
- dependency-name: "*"
- package-ecosystem: "npm"
directory: "/**"
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node_version: [16]
node_version: [16, 18, 20]
# TODO: use the version specified here
graphql_version:
- "16.3.0"
# - "15.8.0"
- "15.8.0"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"typescript.tsdk": "/Users/surajkeshri/Documents/developer/crewhood/eventbus/node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ services:
hostname: rabbit
environment:
RABBITMQ_ERLANG_COOKIE: "SWQOKSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER: "guest"
RABBITMQ_DEFAULT_PASS: "guest"
RABBITMQ_DEFAULT_USER: "admin"
RABBITMQ_DEFAULT_PASS: "admin"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- "5672:5672"
Expand Down
13,656 changes: 1,930 additions & 11,726 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"@changesets/cli": "^2.19.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
Expand All @@ -62,4 +63,4 @@
"overrides": {
"graphql": "^16.3.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.4.2",
"description": "Eventbus powered by GraphQL",
"engines": {
"node": ">= 14 <17"
"node": ">= 14 <=20"
},
"homepage": "https://github.com/quant-daddy/graphql-eventbus",
"bugs": {
Expand Down
Loading
Loading