-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from beabee-communityrm/feat/user-feedback
feat(user-feedback): RS feedback implementations
- Loading branch information
Showing
28 changed files
with
341 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"beabee-common" | ||
], | ||
"name": "beabee-telegram-workspace", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"compilerOptions": { | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
|
@@ -22,7 +22,10 @@ | |
"sqlite3": "https://deno.land/x/[email protected]/mod.ts", | ||
"@beabee/beabee-common": "./beabee-common/mod.ts", | ||
"@beabee/beabee-client": "../beabee-client/mod.ts", | ||
"date-fns": "npm:[email protected]" | ||
"date-fns": "npm:[email protected]", | ||
"https://lib.deno.dev/x/grammy@^1.20/": "https://lib.deno.dev/x/grammy@^1.26.0/", | ||
"https://deno.land/x/[email protected]/": "https://deno.land/x/[email protected]/", | ||
"https://deno.land/x/[email protected]/": "https://deno.land/x/[email protected]/" | ||
}, | ||
"scopes": { | ||
"https://raw.githubusercontent.com/Zhomart/dex/": { | ||
|
@@ -62,8 +65,8 @@ | |
"generate:index:beabee-client": "cd beabee-client && deno task generate:index", | ||
"generate:index:beabee-common": "cd beabee-common && deno task generate:index", | ||
"i18n": "cd telegram-bot && deno task i18n", | ||
"docker:build": "docker build -t beabee/telegram-bot:latest . && docker tag beabee/telegram-bot:latest beabee/telegram-bot:0.3.2", | ||
"docker:build": "docker build -t beabee/telegram-bot:latest . && docker tag beabee/telegram-bot:latest beabee/telegram-bot:0.3.3", | ||
"docker:start": "docker run -it --init -p 3003:3003 beabee/telegram-bot:latest", | ||
"docker:push": "docker push beabee/telegram-bot:latest && docker push beabee/telegram-bot:0.3.2" | ||
"docker:push": "docker push beabee/telegram-bot:latest && docker push beabee/telegram-bot:0.3.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "telegram-bot", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"compilerOptions": { | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
|
@@ -14,7 +14,10 @@ | |
"sqlite3": "https://deno.land/x/[email protected]/mod.ts", | ||
"date-fns": "npm:[email protected]", | ||
"@beabee/beabee-common": "../beabee-common/mod.ts", | ||
"@beabee/beabee-client": "../beabee-client/mod.ts" | ||
"@beabee/beabee-client": "../beabee-client/mod.ts", | ||
"https://lib.deno.dev/x/grammy@^1.20/": "https://lib.deno.dev/x/grammy@^1.26.0/", | ||
"https://deno.land/x/[email protected]/": "https://deno.land/x/[email protected]/", | ||
"https://deno.land/x/[email protected]/": "https://deno.land/x/[email protected]/" | ||
}, | ||
"scopes": { | ||
"https://raw.githubusercontent.com/Zhomart/dex/": { | ||
|
@@ -33,9 +36,9 @@ | |
"check:format": "deno task format --check", | ||
"check:types": "deno check main.ts", | ||
"cache": "deno cache --reload main.ts", | ||
"docker:build": "docker build -f ../Dockerfile -t beabee/telegram-bot:latest .. && docker tag beabee/telegram-bot:latest beabee/telegram-bot:0.3.2", | ||
"docker:build": "docker build -f ../Dockerfile -t beabee/telegram-bot:latest .. && docker tag beabee/telegram-bot:latest beabee/telegram-bot:0.3.3", | ||
"docker:start": "docker run -it --init -p 3003:3003 beabee/telegram-bot", | ||
"docker:push": "docker push beabee/telegram-bot:latest && docker push beabee/telegram-bot:0.3.2", | ||
"docker:push": "docker push beabee/telegram-bot:latest && docker push beabee/telegram-bot:0.3.3", | ||
"i18n": "deno run --allow-read --allow-write --allow-env --allow-net scripts/i18n.ts && deno task format" | ||
} | ||
} |
Oops, something went wrong.