Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-16 | fmt: respect prettierrc and prettierignore (#3346) | 罗文 | |
2019-11-13 | fmt: allow configuration of Prettier options (#3314) | 罗文 | |
2019-11-13 | Make bundles fully standalone (#3325) | Kitson Kelly | |
- 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. | |||
2019-11-12 | flags: bump deno_std to v0.23.0 (#3322) | 罗文 | |
2019-11-04 | Remove tsconfig files - they are not part of build process (#3262) | Ry Dahl | |
2019-11-03 | feat: lockfiles (#3231) | Ry Dahl | |
Use --lock-write=lock.json or --lock-check=lock.json on the command line. | |||
2019-10-22 | remove --no-prompt flag, fail on missing permissions (#3183) | Yoshiya Hinosawa | |
2019-10-21 | update: use v0.21.0 for subcommands (#3168) | Yusuke Sakurai | |
2019-10-17 | feat: --reload flag to take arg for partial reload (#3109) | Michał Sabiniarz | |
Example: To reload only std modules --reload=https://deno.land/std/ | |||
2019-10-12 | support --allow-net=:4500 (#3115) | Bartek Iwańczuk | |
2019-10-12 | Update various links to deno_std (#3096) | Ryan Dahl | |
2019-10-04 | Use xeval from deno_std (#3058) | Nayeem Rahman | |
2019-10-03 | Update rust to 1.38.0 (#3030) | Andy Hayden | |
2019-09-28 | bump deno_std deps (#3034) | Bartek Iwańczuk | |
2019-09-24 | test: add HTTP_PROXY tests (#2977) | Bartek Iwańczuk | |
2019-09-12 | Keep all deno_std URLs in sync (#2930) | Ryan Dahl | |
2019-09-12 | bump prettier revision (#2928) | Bartek Iwańczuk | |
2019-09-01 | Remove DenoSubcommand::Install (#2846) | Nayeem Rahman | |
2019-08-21 | bump test runner revision (#2800) | Bartek Iwańczuk | |
2019-08-16 | chore: bump test runner version (#2784) | Bartek Iwańczuk | |
2019-08-15 | add deno test subcommand (#2783) | Bartek Iwańczuk | |
2019-08-11 | feat: print cache location when no arg in deno info (#2752) | Bartek Iwańczuk | |
2019-07-31 | Use system rustfmt instead of fixed binary (#2701) | Ryan Dahl | |
2019-07-31 | Add --current-thread flag (#2702) | Bartek Iwańczuk | |
2019-07-27 | make importmap flag global (#2687) | Bartek Iwańczuk | |
2019-07-27 | cli: handle deno -v and deno --version (#2684) | Bartek Iwańczuk | |
2019-07-26 | cli: unify deno -h options (#2682) | Bartek Iwańczuk | |
2019-07-20 | fix: bring back --no-fetch flag (#2671) | Bartek Iwańczuk | |
2019-07-17 | Refactor DenoDir (#2636) | Bartek Iwańczuk | |
* rename `ModuleMetaData` to `SourceFile` and remove TS specific functionality * add `TsCompiler` struct encapsulating processing of TypeScript files * move `SourceMapGetter` trait implementation to `//cli/compiler.rs` * add low-level `DiskCache` API for general purpose caches and use it in `DenoDir` and `TsCompiler` for filesystem access * don't use hash-like filenames for compiled modules, instead use metadata file for storing compilation hash * add `SourceFileCache` for in-process caching of loaded files for fast subsequent access * define `SourceFileFetcher` trait encapsulating loading of local and remote files and implement it for `DenoDir` * define `use_cache` and `no_fetch` flags on `DenoDir` instead of using in fetch methods | |||
2019-07-10 | fix for '-' arg after script name (#2631) | Bartek Iwańczuk | |
2019-07-09 | Update deno.land links v0.11 (#2628) | Ryan Dahl | |
2019-07-08 | cli: generate default file name for bundle when URL ends in a slash | Bert Belder | |
2019-07-08 | core: replace ModuleSpecifier::to_url() by as_url() | Bert Belder | |
2019-07-08 | core: clearly define when module lookup is path-based vs URL-based | Bert Belder | |
The rules are now as follows: * In `import` statements, as mandated by the WHATWG specification, the import specifier is always treated as a URL. If it is a relative URL, it must start with either / or ./ or ../ * A script name passed to deno as a command line argument may be either an absolute URL or a local path. - If the name starts with a valid URI scheme followed by a colon, e.g. 'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a URL (even if Deno doesn't support the indicated protocol). - Otherwise, the script name is interpreted as a local path. The local path may be relative, and operating system semantics determine how it is resolved. Prefixing a relative path with ./ is not required. | |||
2019-06-29 | fix: test output for completions (#2597) | Bartek Iwańczuk | |
2019-06-29 | feat: parse flags after script name (#2596) | Bartek Iwańczuk | |
2019-06-26 | feat: deno completions command (#2577) | Bartek Iwańczuk | |
2019-06-24 | refactor: use Path/PathBuf in deno dir (#2559) | Bartek Iwańczuk | |
2019-06-22 | feat: log permission access (#2518) | Bartek Iwańczuk | |
Replaces -D/--log-debug flag with --log-level=debug --log-level=info displays permission access | |||
2019-06-20 | feat: upgrade installer and add docs (#2551) | Bartek Iwańczuk | |
2019-06-15 | Upgrade INSTALLER_URL to include fixes (#2532) | Ryan Dahl | |
denoland/deno_std#492 | |||
2019-06-15 | fix deno install (#2529) | Bartek Iwańczuk | |
2019-06-14 | feat: add deno install command (#2522) | Bartek Iwańczuk | |
2019-06-12 | Move ModuleSpecifier to //core (#2509) | Bartek Iwańczuk | |
2019-06-12 | Refactor module resolving (#2493) | Bartek Iwańczuk | |
Adds ModuleSpecifier, which wraps a URL. This is now passed around instead of specifier and resolver strings. | |||
2019-06-11 | feat: default output filename for deno bundle (#2484) | Ryan Dahl | |
And improve bundle docs | |||
2019-06-11 | Add --seed for setting RNG seed (#2483) | Matt Harrison | |
2019-06-10 | typo (#2489) | Neil Richter | |
2019-06-09 | feat: Import maps (#2360) | Bartek Iwańczuk | |
2019-06-08 | Add 'bundle' subcommand. (#2467) | Kitson Kelly | |