Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Weeden c39932731d
`npm i` in the Dockerfile to esnure we have what we need to build + test (#1557) 2023-08-03 17:44:36 -04:00
Adam Weeden dea954bea8 Update changelog for `v51.0.0` 2023-08-03 14:43:33 -04:00
3 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,10 @@
51.0.0 / 2023-08-03
===================
**[BREAKING]**
* Update Electron to 21 + Node to 16 (#1550)
* Update link to Development Guide (#1544)
50.1.1 / 2023-03-27
===================

View File

@ -1,4 +1,4 @@
FROM node:lts-alpine
FROM --platform=linux/amd64 node:lts-alpine
LABEL description="Alpine image to build Nativefier apps"
@ -31,7 +31,8 @@ RUN find ./icon-scripts ./src ./app -type f -print0 | xargs -0 dos2unix
# Run tests (to ensure we don't Docker build & publish broken stuff)
# Cleanup leftover files in this step to not waste Docker layer space
# Make sure nativefier is executable
RUN npm link \
RUN npm i \
&& npm link \
&& npm run test:noplaywright \
&& rm -rf /tmp/nativefier* ~/.npm/_cacache ~/.cache/electron \
&& chmod +x $NPM_PACKAGES/bin/nativefier

View File

@ -1,6 +1,6 @@
{
"name": "nativefier",
"version": "50.1.1",
"version": "51.0.0",
"description": "Wrap web apps natively",
"license": "MIT",
"author": "Goh Jia Hao",