#606 - Svelte Tutorial

adding HMR to the svelte skeleton
This commit is contained in:
denyhs
2021-04-15 17:30:36 -04:00
parent 1dbf57ac5f
commit 14424b9e36
2 changed files with 4 additions and 3 deletions

View File

@@ -19,5 +19,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)
static-html # Define static page content in .html files
svelte:compiler # Meteor package to allow us to create files with the .svelte extension
rdb:svelte-meteor-data # Meteor package which allows us to consume Meteor's reactive data sources inside of our Svelte components
zodern:melte # Meteor package to allow us to create files with the .svelte extension
rdb:svelte-meteor-data # Meteor package which allows us to consume Meteor's reactive data sources inside of our Svelte components
hot-module-replacement # Update client in development without reloading the page

View File

@@ -14,7 +14,7 @@
<h2>Learn Meteor!</h2>
<ul>
<li><a href="https://www.meteor.com/tutorials/svelte/" target="_blank">Do the Tutorial</a></li>
<li><a href="https://svelte-tutorial.meteor.com/" target="_blank">Do the Tutorial</a></li>
<li><a href="http://guide.meteor.com" target="_blank">Follow the Guide</a></li>
<li><a href="https://docs.meteor.com" target="_blank">Read the Docs</a></li>
<li><a href="https://forums.meteor.com" target="_blank">Discussions</a></li>