Skip to content

Commit 41d338c

Browse files
Merge pull request #3 from MaksymStoianov/fix/package
refactor: fix invalid 'main' field in package.json
2 parents f4ad480 + 4d234fe commit 41d338c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ one place.
1111
Functions specifically designed for Google Apps Script environments, including utilities for working with spreadsheets.
1212

1313
| Function | Description |
14-
|:-----------------------|:-----------------------------------------------|
14+
| :--------------------- | :--------------------------------------------- |
1515
| `checkMultipleAccount` | Checks if multiple Google accounts are in use. |
1616
| `getByteSize` | Returns the size of a string in bytes. |
1717
| `isHtmlOutput` | Checks if an object is an `HtmlOutput`. |
@@ -23,7 +23,7 @@ Functions specifically designed for Google Apps Script environments, including u
2323
A collection of functions to simplify working with Google Sheets.
2424

2525
| Function | Description |
26-
|:----------------------------|:-------------------------------------------------------------------|
26+
| :-------------------------- | :----------------------------------------------------------------- |
2727
| `appendColumn` | Appends a single column of data to the sheet. |
2828
| `appendColumns` | Appends multiple columns of data to the sheet. |
2929
| `appendRow` | Appends a single row of data to the sheet. |
@@ -56,7 +56,7 @@ A collection of functions to simplify working with Google Sheets.
5656
General utility functions that can be useful in any JavaScript/TypeScript project.
5757

5858
| Function | Description |
59-
|:------------------------|:-------------------------------------------------------------------------------|
59+
| :---------------------- | :----------------------------------------------------------------------------- |
6060
| `chunk` | Splits an array into chunks of a specified size. |
6161
| `decodeHtml` | Decodes HTML entities. |
6262
| `encodeHtml` | Encodes a string for safe use in HTML. |
@@ -114,7 +114,7 @@ General utility functions that can be useful in any JavaScript/TypeScript projec
114114
A set of custom exception classes for more specific error handling.
115115

116116
| Exception | Description |
117-
|:------------------------------|:------------------------------------|
117+
| :---------------------------- | :---------------------------------- |
118118
| `EmptyStringException` | Exception for empty strings. |
119119
| `Exception` | Base exception class. |
120120
| `IllegalArgumentException` | Exception for invalid arguments. |
@@ -127,15 +127,15 @@ A set of custom exception classes for more specific error handling.
127127
Descriptions of general interfaces.
128128

129129
| Interface | Description |
130-
|:-----------|:-------------------------|
130+
| :--------- | :----------------------- |
131131
| `Iterator` | Interface for iterators. |
132132

133133
### 5. `path` Module
134134

135135
Functions for working with file paths and URLs.
136136

137137
| Function | Description |
138-
|:----------------|:----------------------------------------------------------------|
138+
| :-------------- | :-------------------------------------------------------------- | ------------------------ |
139139
| `isAbsolute` | Checks if a path is absolute. |
140140
| `isRelative` | Checks if a path is relative. |
141141
| `isValidDomain` | Checks if a string is a valid domain name. |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "appsscript-utils",
33
"version": "1.0.0",
44
"description": "Utilities and types for Google Apps Script development.",
5-
"main": "src/base/index.ts",
5+
"main": "src/index.ts",
66
"scripts": {
77
"dev": "vitest",
88
"format": "prettier --write .",

0 commit comments

Comments
 (0)