chore: move extension manifest to src/, add build script

This commit is contained in:
dragonwocky 2022-12-07 19:56:31 +11:00
parent b1087a6187
commit dc0916ddda
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
42 changed files with 24 additions and 38 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
# builds
dist/
# dependencies
node_modules/

View File

@ -1,29 +0,0 @@
name: 'update parent repositories'
on:
push:
branches:
- main
jobs:
sync:
name: update parent
runs-on: ubuntu-latest
strategy:
matrix:
repo: ['notion-enhancer/extension', 'notion-enhancer/desktop']
steps:
- name: checkout repo
uses: actions/checkout@v2
with:
token: ${{ secrets.CI_TOKEN }}
submodules: true
repository: ${{ matrix.repo }}
- name: pull updates
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
- name: commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '[${{ github.event.repository.name }}] ${{ github.event.head_commit.message }}'

View File

@ -10,6 +10,9 @@
"license": "MIT",
"bin": "bin.mjs",
"type": "module",
"scripts": {
"build-ext": "./scripts/build-browser-extension.sh"
},
"engines": {
"node": ">=16.x.x"
},

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
version=$(node -p "require('./package.json').version")
cd src
mkdir -p ../dist
rm -f "../dist/notion-enhancer-$version.zip"
zip -r9 "../dist/notion-enhancer-$version.zip" . -x electron/\*

13
scripts/enhance-desktop-app.mjs Normal file → Executable file
View File

@ -115,13 +115,14 @@ const unpackApp = () => {
insertPath = getResourcePath("app/node_modules/notion-enhancer");
if (existsSync(insertPath)) await fsp.rm(insertPath, { recursive: true });
// insert the notion-enhancer/src folder into notion's node_modules folder
const excludedDests = [
getResourcePath("app/node_modules/notion-enhancer/browser"),
getResourcePath("app/node_modules/notion-enhancer/manifest.json"),
];
await fsp.cp(srcPath, insertPath, {
recursive: true,
filter: (_, dest) => {
// exclude browser-specific files
const browserDest = getResourcePath("app/node_modules/notion-enhancer/browser");
return dest !== browserDest;
},
// exclude browser-specific files
filter: (_, dest) => !excludedDests.includes(dest),
});
// call patch-desktop-app.mjs on each file
const notionScripts = (await readdirDeep(appPath)).filter((file) => file.endsWith(".js")),
@ -135,7 +136,7 @@ const unpackApp = () => {
}
// create package.json
const manifestPath = getResourcePath("app/node_modules/notion-enhancer/package.json"),
insertManifest = { ...manifest, main: "desktop/init.cjs" };
insertManifest = { ...manifest, main: "electron/init.cjs" };
// remove cli-specific fields
delete insertManifest.bin;
delete insertManifest.type;

0
scripts/patch-desktop-app.mjs Normal file → Executable file
View File

View File

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -16,14 +16,14 @@
"browser_action": {},
"background": { "scripts": ["worker.js"] },
"options_ui": {
"page": "repo/menu/menu.html",
"page": "mods/menu/menu.html",
"open_in_tab": true
},
"web_accessible_resources": ["env/*", "api/*", "dep/*", "media/*", "repo/*"],
"web_accessible_resources": ["browser/*", "common/*", "dep/*", "media/*", "mods/*"],
"content_scripts": [
{
"matches": ["https://*.notion.so/*", "https://*.notion.site/*"],
"js": ["init.js"]
"js": ["browser/init.js"]
}
],
"permissions": ["tabs", "storage", "clipboardRead", "clipboardWrite", "unlimitedStorage"]

View File

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 623 B

After

Width:  |  Height:  |  Size: 623 B

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 634 B

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 65 KiB

View File

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB