Skip to content

Commit

Permalink
chore: bump std version
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiq007 committed Feb 10, 2024
1 parent 7571494 commit 3692039
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions entropy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { closestString } from 'https://deno.land/std@0.212.0/text/closest_string.ts';
import { parseArgs } from 'https://deno.land/std@0.212.0/cli/parse_args.ts';
import { closestString } from 'https://deno.land/std@0.215.0/text/closest_string.ts';
import { parseArgs } from 'https://deno.land/std@0.215.0/cli/parse_args.ts';
import { Constructor } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/utils/utils.module.ts';
import { inject } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/injector/injector.module.ts';
import { Logger } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/logger/logger.module.ts';
Expand Down
2 changes: 1 addition & 1 deletion init.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseArgs } from 'https://deno.land/std@0.212.0/cli/parse_args.ts';
import { parseArgs } from 'https://deno.land/std@0.215.0/cli/parse_args.ts';
import { NewCommand } from './src/commands/new.command.ts';

const args = parseArgs(Deno.args, {
Expand Down
6 changes: 3 additions & 3 deletions src/commands/new.command.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Encrypter } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/encrypter/encrypter.module.ts';
import { inject } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/injector/injector.module.ts';
import { Logger } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/logger/logger.module.ts';
import { readAll } from 'https://deno.land/std@0.212.0/io/mod.ts';
import { readerFromStreamReader } from 'https://deno.land/std@0.212.0/streams/mod.ts';
import { Untar } from 'https://deno.land/std@0.212.0/archive/untar.ts';
import { readAll } from 'https://deno.land/std@0.215.0/io/mod.ts';
import { readerFromStreamReader } from 'https://deno.land/std@0.215.0/streams/mod.ts';
import { Untar } from 'https://deno.land/std@0.215.0/archive/untar.ts';
import { Utils } from 'https://deno.land/x/entropy@1.0.0-beta.15/src/utils/utils.module.ts';
import { Command } from '../decorators/command.decorator.ts';
import { CommandHandler } from '../interfaces/command_handler.interface.ts';
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/test.stub.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const testStub = (className: string, name: string) => {
return `import { expect } from 'https://deno.land/std@0.212.0/expect/expect.ts';
return `import { expect } from 'https://deno.land/std@0.215.0/expect/expect.ts';
import { fetchRoute } from '@entropy/testing';
import { ${className} } from './${name}.controller.ts';
Expand Down

0 comments on commit 3692039

Please sign in to comment.