I don’t know why, for some reason, after update my project to the new Beta.9 the CLI is not compiling and buidling a new app.bundle.js, so my app is always showing an empty screen.
Please, I really need to solve this.
I’ve tried to update everything and to create a new project, but when I add new pages and/or firebase to the project, again no app.bundle.js…
I got same issue…Upgrade to beta9. It doesn’t compile even after downgrading to beta8. It was working. Both has some package.json and npm install was ran.
Not sure why package list is different
I ran npm compare it with another folder (working)
There must be a better way to deal with this, but it looks like tsify is blasting through errors and allowing watchify to look like things worked even when the bundle doesn’t get made.
Commenting out this line in ionic-gulp-browserify-typescript/index.js causes the build to break on errors:
The problem with third party libraries seems to be fixed, however I am getting one of those Typescript ‘errors’ still which isn’t really an error… Property 'cordova' does not exist on type 'Window'.
This is causing the app.bundle.js to still not be created which wasn’t happening before the update
Not that anybody should care what I think, but errors are errors and should not be silently ignored. I realize that TypeScript made emitOnError the default in order to increase acceptance, but it undermines much of the point of using TypeScript in the first place. There are simple ways to work around things like Property 'cordova' does not exist on type 'Window' in the source code, and we should be encouraging doing that instead of allowing tsc to cry wolf into the void.