Skip to content

Commit

Permalink
fix: fixed the build of hermes-mongodb to keep src files directly und…
Browse files Browse the repository at this point in the history
…er the root build folder
  • Loading branch information
arturwojnar committed Apr 1, 2024
1 parent 7a39b82 commit 37160c7
Show file tree
Hide file tree
Showing 16 changed files with 7,428 additions and 847 deletions.
2 changes: 1 addition & 1 deletion docs/pages/pulsar.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ We can use Apache Pulsar and an Exclusive subscription to simulate a mutex behav

## Defining some events

<<< @/../examples/events.ts
<<< @/../examples/common/events.ts

## One partition example

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/rabbitmq.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Under development 🛠️🔧🏗️👷🏼‍♂️

<<< @/../examples/rabbitmq-one-partition-semaphore.ts
<<< @/../examples/rabbit/rabbitmq-one-partition-semaphore.ts

<!-- The type is a simple wrapper to ensure the structure's correctness. It defines:
Expand Down
24 changes: 24 additions & 0 deletions examples/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: 'standard-with-typescript',
plugins: ['@typescript-eslint', 'node', 'prettier', 'import'],
overrides: [
{
env: {
node: true,
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script',
},
},
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {},
}
7 changes: 7 additions & 0 deletions examples/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
File renamed without changes.

0 comments on commit 37160c7

Please sign in to comment.