mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +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
44 lines
580 B
Plaintext
44 lines
580 B
Plaintext
*~
|
|
*.sw[mnpcod]
|
|
*.log
|
|
*.lock
|
|
*.tmp
|
|
*.tmp.*
|
|
log.txt
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
.idea/
|
|
.vscode/
|
|
.sass-cache/
|
|
.versions/
|
|
coverage/
|
|
dist/
|
|
node_modules/
|
|
tmp/
|
|
temp/
|
|
$RECYCLE.BIN/
|
|
|
|
.DS_Store
|
|
Thumbs.db
|
|
UserInterfaceState.xcuserstate
|
|
|
|
.package.tmp.json
|
|
|
|
src/themes/version.scss
|
|
scripts/e2e/webpackEntryPoints.json
|
|
scripts/build/e2e-generated-tsconfig.json
|
|
*.css.ts
|
|
|
|
# demo stuff
|
|
demos/node_modules
|
|
demos/polyfills
|
|
demos/css
|
|
demos/fonts
|
|
demos/src/**/*.js
|
|
demos/src/**/*.map
|
|
demos/src/**/*.ngfactory.ts
|
|
demos/src/**/*.d.ts
|
|
demos/src/**/*.metadata.json
|
|
demos/src/**/*.css.shim.ts
|