diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-11-14 02:35:56 +1100 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-11-13 10:35:56 -0500 |
commit | 8d03397293b388317299dfb0648b541a7005807d (patch) | |
tree | 38aeb4deb371e81f47b6750110d96de46b9f5b05 /std/bundle/README.md | |
parent | ee1b8dc883db1531d913f7b10a8d1160f3209d93 (diff) |
Make bundles fully standalone (#3325)
- Bundles are fully standalone. They now include the shared loader with
`deno_typescript`.
- Refactor of the loader in `deno_typescript` to perform module
instantiation in a more
- Change of behaviour when an output file is not specified on the CLI.
Previously a default name was determined and the bundle written to that
file, now the bundle will be sent to `stdout`.
- Refactors in the TypeScript compiler to be able to support the concept
of a request type. This provides a cleaner abstraction and makes it
easier to support things like single module transpiles to the userland.
- Remove a "dangerous" circular dependency between `os.ts` and `deno.ts`,
and define `pid` and `noColor` in a better way.
- Don't bind early to `console` in `repl.ts`.
- Add an integration test for generating a bundle.
Diffstat (limited to 'std/bundle/README.md')
-rw-r--r-- | std/bundle/README.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/std/bundle/README.md b/std/bundle/README.md deleted file mode 100644 index ecf105d15..000000000 --- a/std/bundle/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# 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. |