We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7373c37 commit 07b70b5Copy full SHA for 07b70b5
3 files changed
example/deno-with-esmsh.ts
@@ -1,5 +1,5 @@
1
#!/usr/bin/env deno run
2
/* eslint-disable no-console */
3
-import * as msgpack from "https://esm.sh/@msgpack/msgpack";
+import * as msgpack from "https://esm.sh/@msgpack/msgpack/mod.ts";
4
5
console.log(msgpack.decode(msgpack.encode("Hello, world!")));
example/deno-with-unpkg.ts
-import * as msgpack from "https://unpkg.com/@msgpack/msgpack?module";
+import * as msgpack from "https://unpkg.com/@msgpack/msgpack/mod.ts";
package.json
@@ -90,6 +90,7 @@
90
"webpack-cli": "latest"
91
},
92
"files": [
93
+ "mod.ts",
94
"src/**/*.*",
95
"dist/**/*.*",
96
"dist.es5+umd/**/*.*",
0 commit comments