Skip to content

Commit 7fe0af7

Browse files
committed
Change package author
1 parent b23b0fe commit 7fe0af7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

scripts/_utils.sh

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ NOTION_EMBEDDED_NAME="embedded_enhancer"
1818
NOTION_REPACKAGED_REVISION="${NOTION_REPACKAGED_REVISION:-1}"
1919
NOTION_REPACKAGED_HOMEPAGE="https://github.com/jamezrin/notion-repackaged"
2020
NOTION_REPACKAGED_REPO=${NOTION_REPACKAGED_REPO:-${NOTION_REPACKAGED_HOMEPAGE}}
21+
NOTION_REPACKAGED_AUTHOR="Notion Repackaged"
2122

2223
function log() {
2324
caller=`basename "$0"`

scripts/extract-src.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ sed -i 's|process.platform === "win32"|process.platform !== "darwin"|g' main/mai
4343
PATCHED_PACKAGE_JSON=$(jq \
4444
--arg homepage "${NOTION_REPACKAGED_HOMEPAGE}" \
4545
--arg repo "${NOTION_REPACKAGED_REPO}" \
46+
--arg author "${NOTION_REPACKAGED_AUTHOR}" \
4647
'.dependencies.cld="2.7.0" |
4748
.name="notion-app" |
4849
.homepage=$homepage |
49-
.repository=$repo' package.json
50+
.repository=$repo |
51+
.author=$author' package.json
5052
)
5153
echo "${PATCHED_PACKAGE_JSON}" > package.json
5254

0 commit comments

Comments
 (0)