Get rid of src/ dir

don't need this layer of indirection
This commit is contained in:
ronreg-ribdev 2021-01-02 23:47:15 -08:00
parent e96df4d033
commit 703a0cd630
11 changed files with 3 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -14,6 +14,6 @@
"parcel": "^1.12.4"
},
"scripts": {
"build-dist": "parcel build src/background/page.html src/options/options.html src/popup/popup.html"
"build-dist": "parcel build background/page.html options/options.html popup/popup.html"
}
}

View File

@ -7,5 +7,5 @@ build-javascript:
build-extension:
yarn --cwd extension run build-dist
cp -r extension/src/icons/ extension/dist/
cp extension/src/manifest.json extension/dist/
cp -r extension/icons/ extension/dist/
cp extension/manifest.json extension/dist/