Skip to content

Commit

Permalink
Fixed sample CLI config template
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Sep 12, 2024
1 parent 03b382a commit 3d4dbd4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-driven-io/pongo-core",
"version": "0.14.2",
"version": "0.14.3",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/pongo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-driven-io/pongo",
"version": "0.14.2",
"version": "0.14.3",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/pongo/src/commandLine/configFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const sampleConfig = (collectionNames: string[] = ['users']) => {
const types = collectionNames
.map(
(name) =>
`type ${formatTypeName(name)} = { name: string, description: string, date: Date }`,
`type ${formatTypeName(name)} = { name: string; description: string; date: Date }`,
)
.join('\n');

Expand Down

0 comments on commit 3d4dbd4

Please sign in to comment.