mini-diary
mini-diary copied to clipboard
yarn build not creating dist folder
$ yarn build
Not creating app or creating any dist folder
Are you getting any particular error or does it say it builds successfully, it just doesn't create the expected folders. This application uses webpack and the folder created during building is the 'bundle' folder. Do you see that folder?
This is what should be generated when you run the build command:
I can repro this issue on Ubuntu 20.04 The dist is not being created, but the build was a success. The bundle folder does exist however
same here on mac.
I added following 2 things to package.json's scripts and used them.
"pack": "electron-builder --dir",
"dist": "electron-builder",
used yarn dist
to build.