Skip to content
This repository has been archived by the owner on May 1, 2022. It is now read-only.

Commit

Permalink
Migrate example project to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdeichert committed Mar 18, 2020
1 parent e5b007c commit 551a7bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"svelte": "^3.7.1"
},
"devDependencies": {
"svelvet": "^0.3.0"
"svelvet": "^0.4.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div id="app"></div>

<script type="module">
import App from './App.js';
import App from './dist/App.js';

new App({
target: document.querySelector('#app'),
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import Header from './components/Header';
import Footer from './components/Footer/index';
import Footer from '/components/Footer/index'; // Absolute imports will get prefixed with the dist directory
</script>


Expand Down

0 comments on commit 551a7bd

Please sign in to comment.