Skip to content

Commit

Permalink
update: bump deno to v1.1.1 and std to v0.58.0 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Jun 20, 2020
1 parent 27c887b commit bd4b181
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@master
- uses: denolib/setup-deno@master
with:
deno-version: 1.0.2
deno-version: 1.1.1
- name: Run tests
run: |
cp ./ormconfig.gh-actions.json ./ormconfig.json
Expand Down
2 changes: 1 addition & 1 deletion dem.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"protocol": "https",
"path": "deno.land/std",
"version": "0.53.0",
"version": "0.58.0",
"files": [
"/async/deferred.ts",
"/fmt/colors.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/CliBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function createCommandBuilder(cli: ReturnType<typeof cac>, module: CommandModule
}

export function createCliBuilder(): CliBuilder {
const cli = cac("typeorm").help();
const cli = cac("typeorm").help(null);
const builder = {
version(version: string) {
cli.version(version);
Expand Down
1 change: 1 addition & 0 deletions test/deps/sinon.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @deno-types="https://unpkg.com/@types/[email protected]/index.d.ts"
import sinon from "https://dev.jspm.io/[email protected]";
//import sinon from 'https://cdn.pika.dev/sinon@^8.1.1';

Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/deferred.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.53.0/async/deferred.ts";
export * from "https://deno.land/std@0.58.0/async/deferred.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.53.0/fmt/colors.ts";
export * from "https://deno.land/std@0.58.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fs/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.53.0/fs/mod.ts";
export * from "https://deno.land/std@0.58.0/fs/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/node/process.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.53.0/node/process.ts";
export * from "https://deno.land/std@0.58.0/node/process.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/path/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.53.0/path/mod.ts";
export * from "https://deno.land/std@0.58.0/path/mod.ts";

0 comments on commit bd4b181

Please sign in to comment.