Include node/npm/linux versions in README-AMO.md, rename README-AMO.md to README.md when including it into the archive

This commit is contained in:
Tamius Han 2020-06-14 23:41:02 +02:00
parent fef30ce3e9
commit 88ce945a47
2 changed files with 62 additions and 2 deletions

View File

@ -4,6 +4,21 @@
The extension is built on a PC running Manjaro Linux. npm and node are installed from repositories/aur.
### Software versions:
Node/npm versions:
```
node: %%NODE_VERSION%%
npm: %%NPM_VERSION%%
```
Linux (`uname -a`):
```
%%UNAME%%
```
## Installing dependencies
@ -14,4 +29,4 @@ Run `npm ci`
`npm run build`
The compiled code pops up in /dist-ff (/dist-chrome for Chromium-based browsers).
The compiled code pops up in /dist-ff (/dist-chrome for Chromium-based browsers).

View File

@ -2,4 +2,49 @@
# makes a zip file with human-readable source code that we need to upload to AMO
# since webpack minifies stuff
zip -r dist-zip/uw-amo-source.zip README-AMO.md .babelrc package.json package-lock.json webpack.config.js scripts src/
# we need to do this, otherwise `nvm` command won't be available
. ~/.nvm/nvm.sh
# first, we collect npm/node versions:
# (NOTE: the last bit is necessary to remove ANSI color codes from output)
NODE_VERSION=`nvm ls | head -n 1 | awk '{print $2}' | sed 's/\x1B\[[0-9;]\+[A-Za-z]//g'`
NPM_VERSION=`npm --version`
UNAME=`uname -a`
# copy REAMDE to /tmp for processing
cp README-AMO.md /tmp/README-AMO.md
# replace placeholders with proper software versions
sed -i "s/%%NODE_VERSION%%/${NODE_VERSION}/g" /tmp/README-AMO.md
sed -i "s/%%NPM_VERSION%%/${NPM_VERSION}/g" /tmp/README-AMO.md
sed -i "s/%%UNAME%%/${UNAME}/g" /tmp/README-AMO.md
# add files to archive
zip -r dist-zip/uw-amo-source.zip /tmp/README-AMO.md .babelrc package.json package-lock.json webpack.config.js scripts/ src/
# rename /tmp/README-AMO.md to README.md
printf "@ tmp/README-AMO.md\n@=README.md\n" | zipnote -w dist-zip/uw-amo-source.zip
# printout for debugging purposes:
echo ""
echo "—————— AMO SOURCE PREPARATION FINISHED ——————"
echo " Debug info:"
echo ""
echo "nvm ls:"
nvm ls
echo ""
echo "npm --version"
npm --version
echo ""
echo "uname -a"
uname -a
echo ""
echo ""
echo "extracted variables:"
echo "NODE_VERSION: ${NODE_VERSION}"
echo "NPM_VERSION: ${NPM_VERSION}"
echo "UNAME: ${UNAME}"
echo ""
echo ""
echo "—————— EXTENSION PACKAGES READY FOR UPLOAD ——————"