Hey all!
I started with atom-shell-starter and now I’m trying to package my app. I have my app.asar
file in /Contents/Resources/app.asar
, and when I run my app, it seems to locate and launch the asar
. But when atom/browser/init.coffee
loads my main
file (I think here), it only tries to find the .js
file but not the .coffee
file.
Cannot find module 'Users/hank/node/my-app/atom-shell/MyApp.app/Contents/Resources/app.asar/src/browser/main.js`
Could it be that the .coffee
exension hasn’t been rendered? Do I need to compile js
files when packaging?
Thanks for your help! Using atom-shell has been amazing so far.