diff --git a/entropy.ts b/entropy.ts index 4fd65c0..89ba6da 100644 --- a/entropy.ts +++ b/entropy.ts @@ -1,5 +1,5 @@ -import { closestString } from 'https://deno.land/std@0.209.0/text/closest_string.ts'; -import { parseArgs } from 'https://deno.land/std@0.209.0/cli/parse_args.ts'; +import { closestString } from 'https://deno.land/std@0.210.0/text/closest_string.ts'; +import { parseArgs } from 'https://deno.land/std@0.210.0/cli/parse_args.ts'; import { Constructor } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/utils/utils.module.ts'; import { inject } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/injector/injector.module.ts'; import { Logger } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/logger/logger.module.ts'; diff --git a/init.ts b/init.ts index 04283bd..ec4611c 100644 --- a/init.ts +++ b/init.ts @@ -1,4 +1,4 @@ -import { parseArgs } from 'https://deno.land/std@0.209.0/cli/parse_args.ts'; +import { parseArgs } from 'https://deno.land/std@0.210.0/cli/parse_args.ts'; import { NewCommand } from './src/commands/new.command.ts'; const args = parseArgs(Deno.args, { diff --git a/src/commands/new.command.ts b/src/commands/new.command.ts index 83e4354..4105793 100644 --- a/src/commands/new.command.ts +++ b/src/commands/new.command.ts @@ -2,9 +2,9 @@ import { snakeCase } from 'https://deno.land/x/case@2.2.0/mod.ts'; import { Encrypter } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/encrypter/encrypter.module.ts'; import { inject } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/injector/injector.module.ts'; import { Logger } from 'https://deno.land/x/entropy@1.0.0-beta.6/src/logger/logger.module.ts'; -import { readAll } from 'https://deno.land/std@0.209.0/streams/mod.ts'; -import { readerFromStreamReader } from 'https://deno.land/std@0.209.0/streams/mod.ts'; -import { Untar } from 'https://deno.land/std@0.209.0/archive/untar.ts'; +import { readAll } from 'https://deno.land/std@0.210.0/streams/mod.ts'; +import { readerFromStreamReader } from 'https://deno.land/std@0.210.0/streams/mod.ts'; +import { Untar } from 'https://deno.land/std@0.210.0/archive/untar.ts'; import { Command } from '../decorators/command.decorator.ts'; import { CommandHandler } from '../interfaces/command_handler.interface.ts'; diff --git a/src/stubs/test.stub.ts b/src/stubs/test.stub.ts index 52e392b..36c741c 100644 --- a/src/stubs/test.stub.ts +++ b/src/stubs/test.stub.ts @@ -1,5 +1,5 @@ export const testStub = (className: string, name: string) => { - return `import { expect } from 'https://deno.land/std@0.209.0/expect/expect.ts'; + return `import { expect } from 'https://deno.land/std@0.210.0/expect/expect.ts'; import { fetchRoute } from '@entropy/testing'; import { ${className} } from './${name}.controller.ts';