Please tell me how to create an electron-builder development environment in a Windows.
See original GitHub issueHi. I would like to small contribute to this project. I read this document and tried to create a development environment. But, I’m failing the “pnpm compile” command. There are some points to be worried about.
- When I execute the
pnpm install
command, I get the error.ERR_PNPM_PREPARE_PKG_FAILURE not found: yarn
. - When I execute the
yalk link ***
command, I get many warning messages.Could not find package `app-builder-lib` in store (C:\Users\***\AppData\Local\Yalc\packages\app-builder-lib), skipping.
- When I execute the
pnpm compile
command, I get the error. ```‘tsc’ is not recognized as an internal or external command ~~~``
Any information is welcome.
Issue Analytics
- State:
- Created a year ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
electron-builder
A complete solution to package and build a ready for distribution Electron app for macOS, Windows and Linux with “auto update” support out...
Read more >A Comprehensive Guide to Building and Packaging an ...
Prerequisites for Packaging Windows Apps on Mac; electron-forge ... Before you can package an Electron app, you first must build one.
Read more >How To Create Your First Cross-Platform Desktop Application ...
First you'll install Electron to your machine and create the project folder to build the desktop application. To start the Electron installation ...
Read more >Build Instructions | Electron
Follow the guidelines below for building Electron itself, for the purposes of creating custom Electron binaries. For bundling and distributing your app code ......
Read more >Building desktop applications with Electron - electron-builder
In this tutorial, we will take a look at using electron-builder to package and build a ready for distribution Electron app. Since I...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Would you be willing to open a PR on the document with the information you needed to get your env set up? We can iterate on it from there 😃 It’s been a long time since I’ve had to set up an env and both my dev machines are already configured.
Doc: https://github.com/electron-userland/electron-builder/blob/master/CONTRIBUTING.md
The
pnpm install
andpnpm compile
commands were successful with the yarn installed.🎊 A different installation log was displayed.Next, Not in the specified order, but after
pnpm compile
,yalc publish <12 packages I need to link>
in the packages folder. (This command cannot specify multiple packages, so you need to do it 12 times 😫) In this state, whenyalc link <12 packages I need to link>
is performed in the project folder (electron-builder), the following log is displayed.It’s not accurate because I don’t have any knowledge about workspace, but I think this is okay. That’s all for today.