Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 2ce3422

Browse files
committed
0.4.1
1 parent 59489dd commit 2ce3422

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

example/example.html

+1-6
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,14 @@
1212
});
1313
</script>
1414

15-
<script type="module" id="testmodule">
15+
<script type="module">
1616
export default class Foo {
1717
bar(){
1818
console.log("baz");
1919
}
2020

2121
}
2222
</script>
23-
<script type="module">
24-
import Foo from './testmodule';
25-
let foo = new Foo();
26-
foo.bar();
27-
</script>
2823
<script type="module">
2924
import fn from './es-module.js';
3025
console.log(fn);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-es-module-loader",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Demonstrates ES module loading in the browser",
55
"main": "dist/browser-es-module-loader.js",
66
"author": "Guy Bedford",

0 commit comments

Comments
 (0)