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

Preparations for initial release #22

Merged
merged 21 commits into from
Dec 14, 2022
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
open_collective: existdb

67 changes: 67 additions & 0 deletions .github/opencollective.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Collective
# ----------

# Define the Open Collective you want to link the repository with.
# Please use the Open Collective slug not the Open Collective URL.

collective: existdb

# Invitation
# ----------

# Post a comment on issues created by non contributors.

#invitation: |-
# Hey <author> :wave:,

# Thank you for opening an issue. We will get back to you as soon as we can. Have you seen our Open Collective page? Please consider contributing financially to our project. This will help us involve more contributors and get to issues like yours faster.

# <link>

# > We offer `priority` support for all financial contributors. Don't forget to add `priority` label once you become one! :smile:

# To disable that feature, you can use the following syntax

invitation: false

# Tiers
# -----

# In this section you can define specific behavior for all supported tiers, ie: "backer" "and sponsor".

#tiers:
# # Uncomment this block if you want to activate a custom comment for people contributors to the "backer" tier
# - tiers: ['backer']
# labels: ['priority']
# message: |-
# Hey <author> :wave:,
#
# Thank you for being a "backer". We will handle your issue with priority support. To make sure we don't forget how special you are, we added a `priority` label to your issue.
#
# Thank you again for contributing :tada:!

# # Uncomment this block if you want to activate a custom commentfor people contributors to the "sponsor" tier
# - tiers: ['sponsor']
# labels: ['priority']
# message: |-
# Hey <author> :wave:,
#
# Thank you for being a "sponsor". We will handle your issue with priority support. To make sure we don't forget how special you are, we added a `priority` label to your issue.
#
# Thank you again for contributing :tada:!

# This rule will be catching any contributor whatever their tiers (also custom contributions)
#- tiers: '*'
# labels: ['priority']
# message: |-
# Hey <author> :wave:,

# Thank you for contributing to our project financially. We will handle your issue with priority support. To make sure we don't forget how special you are, we added a `priority` label to your issue.

# Thank you again for contributing :tada:!

# To disable that feature, you can use the following syntax

tiers: []


1 change: 1 addition & 0 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ const parser = yargs(hideBin(process.argv))
.completion('completion', false)
.command(commands)
.demandCommand(1)
// .recommendCommands()
.strict(false)
.fail(false)

Expand Down
2 changes: 1 addition & 1 deletion commands/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function getQuery (file, query) {
}

// read query from standard input
if (query === '-') {
if (query === true) {
return readFileSync(process.stdin.fd, 'utf-8')
}

Expand Down
Loading