browserify / watchify

watch mode for browserify builds
Other
1.79k stars 203 forks source link

Order matters #321

Open OliverJAsh opened 8 years ago

OliverJAsh commented 8 years ago

If I run:

watchify --verbose --outfile target/js/app.js client/app/app.ts --plugin [ tsify --project client/tsconfig.json ]

My compile works. However, if I run:

watchify --verbose client/app/app.ts --plugin [ tsify --project client/tsconfig.json ] --outfile target/js/app.js

The compile results in a very small module.

Why does order of args matter?