mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00

* chore: fix incorrect execution of node binaries * Currently gulp runs the `ngc` by manually calling the `./node_modules/.bin/ngc` file (by assuming it's a node script) This is not always correct, because often package managers like (npm or yarn) create bash files for the package binaries. * Using `resolve-bin` to properly determine the path to the *real* node script and then we can assume it's a node file. Fixes #8341 * Remove extra newline