Mike Jerred
Mike Jerred
The problem might be that you are using python 3. I have only had success using python2 to build. You can `npm config set python ` to do this.
I think this issue can be closed now?
No, but the comments by @implausible seem to suggest that this issue would be fixed once certain PRs get merged to electron and nodejs - all of which have since...
FYI, I am patching this for my electron build, simply changing `base: core18` to `base: core20` in `app-builder-lib/templates/snap/snapcraft.yaml` and it seems to work correctly.
@mkinitcpio do your AppImage builds still work?
@mkinitcpio Might be related to this PR: https://github.com/electron-userland/electron-builder/pull/7110 I managed to get `compression` working but it required some monkey-patching of app-builder-lib
As a workaround you can add to your `package.json`: ```json "overrides": { "@materia-ui/ngx-monaco-editor": { "@angular/common": "$@angular/common", "@angular/core": "$@angular/core", "monaco-editor": "$monaco-editor" } } ```
Only these changes are required with Angular 13: `package.json` ``` "dependencies": { "buffer": "^6.0.3" }, ... ``` `polyfills.ts` ```ts import { Buffer } from 'buffer'; (window as any).Buffer = Buffer;...
Is there any workaround for this?
Changing the base alone works, but I also need to update the gnome extension to fix bugs e.g. this one: https://forum.snapcraft.io/t/snapped-app-not-loading-fonts-on-fedora-and-arch/12484/116 When I update to `gnome-3-38-2004` by doing this: app-builder-lib/templates/snap/snapcraft.yaml...