-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31be8bf
commit 09de42b
Showing
6 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ | |
**Note: You need to upgrade to Deno v1.6.0 or newer in order to use our CLI.** | ||
|
||
```shell script | ||
deno install -Afq --unstable https://x.nest.land/[email protected].8/eggs.ts | ||
deno install -Afq --unstable https://x.nest.land/[email protected].10/eggs.ts | ||
``` | ||
|
||
For more information, see the [documentation](https://docs.nest.land/). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,56 +9,56 @@ export { | |
join, | ||
relative, | ||
resolve, | ||
} from "https://x.nest.land/std@0.107.0/path/mod.ts"; | ||
} from "https://x.nest.land/std@0.113.0/path/mod.ts"; | ||
|
||
export { | ||
exists, | ||
existsSync, | ||
expandGlob, | ||
expandGlobSync, | ||
walkSync, | ||
} from "https://x.nest.land/std@0.107.0/fs/mod.ts"; | ||
} from "https://x.nest.land/std@0.113.0/fs/mod.ts"; | ||
|
||
export * as log from "https://x.nest.land/std@0.107.0/log/mod.ts"; | ||
export * as log from "https://x.nest.land/std@0.113.0/log/mod.ts"; | ||
|
||
export { LogRecord } from "https://x.nest.land/std@0.107.0/log/logger.ts"; | ||
export { LogRecord } from "https://x.nest.land/std@0.113.0/log/logger.ts"; | ||
|
||
export type { LevelName } from "https://x.nest.land/std@0.107.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.107.0/log/levels.ts"; | ||
export type { LevelName } from "https://x.nest.land/std@0.113.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.113.0/log/levels.ts"; | ||
|
||
export { BaseHandler } from "https://x.nest.land/std@0.107.0/log/handlers.ts"; | ||
export { BaseHandler } from "https://x.nest.land/std@0.113.0/log/handlers.ts"; | ||
|
||
export * from "https://x.nest.land/std@0.107.0/fmt/colors.ts"; | ||
export * from "https://x.nest.land/std@0.113.0/fmt/colors.ts"; | ||
|
||
export { | ||
assert, | ||
assertEquals, | ||
assertMatch, | ||
} from "https://x.nest.land/std@0.107.0/testing/asserts.ts"; | ||
} from "https://x.nest.land/std@0.113.0/testing/asserts.ts"; | ||
|
||
export { | ||
parse as parseYaml, | ||
stringify as stringifyYaml, | ||
} from "https://x.nest.land/std@0.107.0/encoding/yaml.ts"; | ||
} from "https://x.nest.land/std@0.113.0/encoding/yaml.ts"; | ||
|
||
/**************** cliffy ****************/ | ||
export { | ||
Command, | ||
CompletionsCommand, | ||
HelpCommand, | ||
} from "https://x.nest.land/cliffy@0.19.5/command/mod.ts"; | ||
} from "https://x.nest.land/cliffy@0.20.1/command/mod.ts"; | ||
|
||
export { string as stringType } from "https://x.nest.land/cliffy@0.19.5/flags/types/string.ts"; | ||
export { string as stringType } from "https://x.nest.land/cliffy@0.20.1/flags/types/string.ts"; | ||
|
||
export { | ||
Checkbox, | ||
Confirm, | ||
Input, | ||
List, | ||
Select, | ||
} from "https://x.nest.land/cliffy@0.19.5/prompt/mod.ts"; | ||
} from "https://x.nest.land/cliffy@0.20.1/prompt/mod.ts"; | ||
|
||
export type { ITypeInfo } from "https://x.nest.land/cliffy@0.19.5/flags/types.ts"; | ||
export type { ITypeInfo } from "https://x.nest.land/cliffy@0.20.1/flags/types.ts"; | ||
|
||
/**************** semver ****************/ | ||
export * as semver from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "0.3.9"; | ||
export const version = "0.3.10"; |