summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-07-16 12:11:50 +0200
committerRaindropsSys <contact@minteck.org>2023-07-16 12:11:50 +0200
commitb95c8de0000b903fc26e01d04645222088044983 (patch)
tree7ff751f8d72e024db53d9d52f61de2fae0b6c189
parent98303e7ea532aa730db4b7d5bc309e4a91a58cf7 (diff)
downloadsignal.js-b95c8de0000b903fc26e01d04645222088044983.tar.gz
signal.js-b95c8de0000b903fc26e01d04645222088044983.tar.bz2
signal.js-b95c8de0000b903fc26e01d04645222088044983.zip
Update
-rwxr-xr-x.hooks/hooks/post-commit1
-rw-r--r--src/README.md3
-rw-r--r--src/package.json2
3 files changed, 2 insertions, 4 deletions
diff --git a/.hooks/hooks/post-commit b/.hooks/hooks/post-commit
index af23188..35e4eac 100755
--- a/.hooks/hooks/post-commit
+++ b/.hooks/hooks/post-commit
@@ -1,5 +1,4 @@
#!/bin/sh
-command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-commit'.\n"; exit 2; }
git lfs post-commit "$@"
cd src
node build.js
diff --git a/src/README.md b/src/README.md
index 4289be4..0648538 100644
--- a/src/README.md
+++ b/src/README.md
@@ -36,8 +36,7 @@ After Signal.js is installed, we can create a simple example bot with this code:
const { Client } = require('@equestria.dev/signal.js');
const client = new Client({
- account: "your phone number here",
- signalCli: "/path/to/signal-cli"
+ account: "your phone number here"
});
client.on('message', async (message) => {
diff --git a/src/package.json b/src/package.json
index bfb715e..44ff92e 100644
--- a/src/package.json
+++ b/src/package.json
@@ -1,6 +1,6 @@
{
"name": "@equestria.dev/signal.js",
- "version": "1.0.0-rc.1",
+ "version": "1.0.1-rc.1",
"description": "An easy-to-use Node.js library for Signal",
"main": "dist/index.js",
"publishConfig": {