This repository was archived by the owner on Oct 24, 2021. It is now read-only.
This repository was archived by the owner on Oct 24, 2021. It is now read-only.
CSS preprocessors, JavaScript compilers, and the Meteor Build Tool #41
Closed
Description
Article outline
https://github.com/meteor/guide/blob/master/outlines/build-tool.md
Major decision points
- Use ES2015+ everywhere via the
ecmascript
package, if you really want to you can usecoffeescript
instead but all of our code samples will be against ES2015. - Use autoprefixer by using one of the community minifier packages that have it built-in, rather than by building it into the CSS compiler. In the future, we will need a separate build step for CSS post-processing.
- Ideally the Meteor 1.3 build tool will support NPM on the client and server natively, but until then
meteorhacks:npm
andcosmos:browserify
are the best options