I saw this in flux chat examplethe.
browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js
Why is browserify . -t [envify --NODE_ENV production]
used here?
- How is the
.
used? - Why is
[envify --NODE_ENV production]
used after-t
?