2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-25 23:03:15 +00:00

Compare commits

..

No commits in common. "c39932731d1d9016c09c83228cefe9a2cdf9fde7" and "051622d58e9a9b0651990ed767063ee74c3f076a" have entirely different histories.

3 changed files with 3 additions and 10 deletions

View File

@ -1,10 +1,4 @@
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 --platform=linux/amd64 node:lts-alpine
FROM node:lts-alpine
LABEL description="Alpine image to build Nativefier apps"
@ -31,8 +31,7 @@ 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 i \
&& npm link \
RUN 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": "51.0.0",
"version": "50.1.1",
"description": "Wrap web apps natively",
"license": "MIT",
"author": "Goh Jia Hao",