From 1de9c49660edb0fa455d5992455bcbe21c4f63a6 Mon Sep 17 00:00:00 2001 From: cristo-rabani Date: Mon, 23 Nov 2015 23:55:00 +0100 Subject: [PATCH] readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b7ef452..047364e 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,16 @@ This package use file extensions `*.import.js` and `*.import.jsx` for compatibil By default only files with `.import.js(x)` extension are bundled as modules, all other files are processed as usual. -If you want to use modules in all `*.js` files check out **[universe:modules-entrypoint](https://github.com/vazco/meteor-universe-modules-entrypoint)**. +If you want to use modules in all `*.js` files check out +**[universe:ecmascript](https://github.com/vazco/universe-ecmascript)** + or **[universe:modules-entrypoint](https://github.com/vazco/meteor-universe-modules-entrypoint)**. *Entrypoint* package parse all `*.js` files and provide one entry point file to run your application. Check [docs](https://github.com/vazco/meteor-universe-modules-entrypoint) for more info how to setup modules in this mode. +*Ecmascript* package parse all `*.js` and `*.jsx` files and load them automatically in the first possible moment. +Check [docs](https://github.com/vazco/universe-ecmascript) for more info how to setup modules in this mode. + ### Benefits of modules is Meteor Universe Modules allows you to write your code in modular way, something that Meteor lacks by default.