mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
Make deno_cli installable via crates.io (#2946)
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript
This commit is contained in:
parent
1d305c2ac7
commit
c9ef182886
29 changed files with 163 additions and 106 deletions
|
@ -1,7 +1,7 @@
|
|||
import { test, assert } from "./test_util.ts";
|
||||
|
||||
test(function version(): void {
|
||||
const pattern = /^\d+\.\d+\.\d+$/;
|
||||
const pattern = /^\d+\.\d+\.\d+/;
|
||||
assert(pattern.test(Deno.version.deno));
|
||||
assert(pattern.test(Deno.version.v8));
|
||||
assert(pattern.test(Deno.version.typescript));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue