Using node v18.20.5
# failed
npm run build:editor
⨯ Please specify author 'email' in the application package.json
See https://docs.npmjs.com/files/package.json#people-fields-author-contributors
It is required to set Linux .deb package maintainer. Or you can set maintainer in the custom linux options.
(see https://www.electron.build/configuration/linux).
failedTask=build stackTrace=Error: Please specify author 'email' in the application package.json
Easy fix
Edit:
packages/noodl-editor/package.json
{
"name": "noodl-editor",
"productName": "OpenNoodl",
"description": "Full stack low code React app builder",
"author": "The Low Code Foundation <EMAIL@HERE.pls>",
"homepage": "https://thelowcodefoundation.com",
"version": "1.1.0",
"main": "src/main/main.js",
Worked on Debian trixie - 6.12.12-amd64
Using node v18.20.5
# passed npm install# failed npm run build:editorEasy fix
Edit:
packages/noodl-editor/package.json
{ "name": "noodl-editor", "productName": "OpenNoodl", "description": "Full stack low code React app builder", "author": "The Low Code Foundation <EMAIL@HERE.pls>", "homepage": "https://thelowcodefoundation.com", "version": "1.1.0", "main": "src/main/main.js",Worked on Debian trixie - 6.12.12-amd64