Skip to content

Commit ee0cde5

Browse files
Merge pull request #16 from bootgs/max/next
fix: bugs
2 parents 04ee59a + 432f475 commit ee0cde5

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
bash ./sctipts/pre-commit.sh
3+
bash ./scripts/pre-commit.sh

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
bash ./sctipts/pre-push.sh
3+
bash ./scripts/pre-push.sh

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ code **clean**, **modular**, and **maintainable**.
186186
<details open><summary>Class decorators</summary>
187187

188188
| Decorator | Description |
189-
|-----------------------|---------------------------------------------------------------|
189+
| --------------------- | ------------------------------------------------------------- |
190190
| `@Controller()` | Marks a class as a general-purpose controller. |
191191
| `@Service()` | Marks a class as a service, typically holding business logic. |
192192
| `@Repository()` | Marks a class as a repository, abstracting data access logic. |
@@ -209,7 +209,7 @@ code **clean**, **modular**, and **maintainable**.
209209
<details open><summary>Method decorators</summary>
210210

211211
| Decorator | Description |
212-
|----------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
212+
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
213213
| `@Install()` | Handles [`onInstall`](https://developers.google.com/apps-script/guides/triggers#oninstalle) event, triggered when the add-on is first installed. |
214214
| `@Open()` | Handles [`onOpen`](https://developers.google.com/apps-script/guides/triggers#onopene) event, triggered when a Google Sheet is opened. |
215215
| `@Edit()` | Handles [`onEdit`](https://developers.google.com/apps-script/guides/triggers#onedite) event, triggered by manual cell changes in a Google Sheet. |
@@ -238,7 +238,7 @@ code **clean**, **modular**, and **maintainable**.
238238
<details open><summary>Parameter decorators</summary>
239239

240240
| Decorator | Description |
241-
|-------------------|------------------------------------------------------------|
241+
| ----------------- | ---------------------------------------------------------- |
242242
| `@Event()` | Injects the full Google Apps Script event object. |
243243
| `@Request()` | Injects the full request object or a specific key from it. |
244244
| `@Headers()` | Injects request headers or a specific header value. |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Boot Framework for Google Apps Script™ projects.",
55
"main": "src/index.ts",
66
"scripts": {
7-
"maint": "bash ./sctipts/maintenance.sh",
7+
"maint": "bash ./scripts/maintenance.sh",
88
"dev": "vitest",
99
"format": "prettier --write .",
1010
"lint": "eslint --fix .",
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)