summaryrefslogtreecommitdiff
path: root/bundle/README.md
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-06-11 00:34:43 +1000
committerRyan Dahl <ry@tinyclouds.org>2019-06-10 10:34:43 -0400
commit0ed3046a9a262f0aa2d58293e7ed0d7117eaa558 (patch)
treed24d6afb42214682b75ba87119b3835cda43af54 /bundle/README.md
parent87d3b9b5cc3695402b2e316c39384fabd7e5874a (diff)
Add bundle loader (denoland/deno_std#480)
Original: https://github.com/denoland/deno_std/commit/fe7f6e117fee724bf8f9b44526de1add7da7dfdd
Diffstat (limited to 'bundle/README.md')
-rw-r--r--bundle/README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/bundle/README.md b/bundle/README.md
new file mode 100644
index 000000000..ecf105d15
--- /dev/null
+++ b/bundle/README.md
@@ -0,0 +1,16 @@
+# bundle
+
+These are modules that help support bundling with Deno.
+
+## Usage
+
+The main usage is to load and run bundles. For example, to run a bundle named
+`bundle.js` in your current working directory:
+
+```sh
+deno run https://deno.land/std/bundle/run.ts bundle.js
+```
+
+---
+
+Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.