Merge pull request #11384 from meteor/use-hmr-blaze

Adding the HMR to Blaze skeleton
This commit is contained in:
Filipe Névola
2021-04-13 16:16:30 -04:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -21,3 +21,6 @@ shell-server # Server-side component of the `meteor shell` command
autopublish # Publish all data to the clients (for prototyping)
insecure # Allow all DB writes from clients (for prototyping)
hot-module-replacement # Update code in development without reloading the page
blaze-hot # Update files using Blaze's API with HMR

View File

@@ -561,6 +561,8 @@ const ROOT_PACKAGES_TO_BUILD_IN_SANDBOX = [
'mobile-experience',
'mongo',
'blaze-html-templates',
'blaze-hot',
'hot-module-replacement',
"jquery", // necessary when using Blaze
'session',
'tracker',