-
.babelrc
support! See the README for upgrading. -
react-transform-catch-error
via.babelrc
. -
Release for Meteor
1.3-rc.2
-
Remove slightly annoying notice on server "Creating a bundle..."
-
Be slightly stricter in identifying stateless components, we now look for
/return\s+\(\s*\</
to match (i.e. we added a<
after thereturn (
.
- Accept function components that contain code (before we just accepted functions that mapped to jsx). See README for the new example.
- Even more reliable HCP strategy. Fixes broken CSS hotloading (#9) and all the cases which require a real reload (new files, etc) which we were accidently blocking.
- Release for Meteor
1.3-beta.12
.
-
New and more reliable strategy to block HCP. Regular page reload (via ctrl-R) now works how we expect (it's always up to date, no more stored patches) and
hot.reload()
is no longer required. -
Relax path restrictions a bit. Match on anything that contains 'client' and not 'test' in the path / filename.
beta.11
support.
-
Code to force a client refresh, used for changes we can't handle.
-
Different method for overriding core modules-runtime.
- Correctly resolve relationships when importing from root paths
(
/something
) and relative paths involving parents (../../something). Relative paths in the same directory (
./something) were all that was supported previously (#4).
-
Relax restriction on stateless components to not be in a
components
directory, let's hope it's ok. -
Intercept requests to
/packages/modules-runtime.js
and avoid need to replace entire module (until install#86 is accepted).