-
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.
Merge pull request #121 from nestdotland/dev
0.3.6
- Loading branch information
Showing
12 changed files
with
47 additions
and
57 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
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].5/eggs.ts | ||
deno install -Afq --unstable https://x.nest.land/[email protected].6/eggs.ts | ||
``` | ||
|
||
For more information, see the [documentation](https://docs.nest.land/). | ||
|
@@ -129,14 +129,6 @@ eggs update # Updates everything | |
eggs update http fs eggs # Updates only http, fs, eggs | ||
``` | ||
|
||
Scripts installed with `eggs install` can also be updated with the `-g` | ||
parameter. | ||
|
||
```shell script | ||
eggs update -g # Updates every script installed with eggs install | ||
eggs update eggs denon -g # Updates only eggs, denon | ||
``` | ||
|
||
Several registries are supported. The current ones are: | ||
|
||
- x.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 |
---|---|---|
|
@@ -3,17 +3,17 @@ export { | |
bench, | ||
runBenchmarks, | ||
} from "https://x.nest.land/[email protected]/testing/bench.ts"; | ||
import * as archive from "https://x.nest.land/[email protected]/archive/tar.ts"; | ||
import * as denoSync from "https://x.nest.land/[email protected]/async/mod.ts"; | ||
import * as bytes from "https://x.nest.land/[email protected]/bytes/mod.ts"; | ||
import * as dateTime from "https://x.nest.land/[email protected]/datetime/mod.ts"; | ||
import * as colors from "https://x.nest.land/[email protected]/fmt/colors.ts"; | ||
import * as sha512 from "https://x.nest.land/[email protected]/hash/sha512.ts"; | ||
import * as http from "https://x.nest.land/[email protected]/http/mod.ts"; | ||
import * as io from "https://x.nest.land/[email protected]/io/mod.ts"; | ||
import * as log from "https://x.nest.land/[email protected]/log/mod.ts"; | ||
import * as _archive from "https://x.nest.land/[email protected]/archive/tar.ts"; | ||
import * as _denoSync from "https://x.nest.land/[email protected]/async/mod.ts"; | ||
import * as _bytes from "https://x.nest.land/[email protected]/bytes/mod.ts"; | ||
import * as _dateTime from "https://x.nest.land/[email protected]/datetime/mod.ts"; | ||
import * as _colors from "https://x.nest.land/[email protected]/fmt/colors.ts"; | ||
import * as _sha512 from "https://x.nest.land/[email protected]/hash/sha512.ts"; | ||
import * as _http from "https://x.nest.land/[email protected]/http/mod.ts"; | ||
import * as _io from "https://x.nest.land/[email protected]/io/mod.ts"; | ||
import * as _log from "https://x.nest.land/[email protected]/log/mod.ts"; | ||
|
||
// deno land 3rd party | ||
import * as dmm from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as drash from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as _dmm from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as _drash from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as _bcrypt 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
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.80.0/path/mod.ts"; | ||
} from "https://x.nest.land/std@0.93.0/path/mod.ts"; | ||
|
||
export { | ||
exists, | ||
existsSync, | ||
expandGlob, | ||
expandGlobSync, | ||
walkSync, | ||
} from "https://x.nest.land/std@0.80.0/fs/mod.ts"; | ||
} from "https://x.nest.land/std@0.93.0/fs/mod.ts"; | ||
|
||
export * as log from "https://x.nest.land/std@0.80.0/log/mod.ts"; | ||
export * as log from "https://x.nest.land/std@0.93.0/log/mod.ts"; | ||
|
||
export { LogRecord } from "https://x.nest.land/std@0.80.0/log/logger.ts"; | ||
export { LogRecord } from "https://x.nest.land/std@0.93.0/log/logger.ts"; | ||
|
||
export type { LevelName } from "https://x.nest.land/std@0.80.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.80.0/log/levels.ts"; | ||
export type { LevelName } from "https://x.nest.land/std@0.93.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.93.0/log/levels.ts"; | ||
|
||
export { BaseHandler } from "https://x.nest.land/std@0.80.0/log/handlers.ts"; | ||
export { BaseHandler } from "https://x.nest.land/std@0.93.0/log/handlers.ts"; | ||
|
||
export * from "https://x.nest.land/std@0.80.0/fmt/colors.ts"; | ||
export * from "https://x.nest.land/std@0.93.0/fmt/colors.ts"; | ||
|
||
export { | ||
assert, | ||
assertEquals, | ||
assertMatch, | ||
} from "https://x.nest.land/std@0.80.0/testing/asserts.ts"; | ||
} from "https://x.nest.land/std@0.93.0/testing/asserts.ts"; | ||
|
||
export { | ||
parse as parseYaml, | ||
stringify as stringifyYaml, | ||
} from "https://x.nest.land/std@0.80.0/encoding/yaml.ts"; | ||
} from "https://x.nest.land/std@0.93.0/encoding/yaml.ts"; | ||
|
||
/**************** cliffy ****************/ | ||
export { | ||
Command, | ||
CompletionsCommand, | ||
HelpCommand, | ||
} from "https://x.nest.land/cliffy@0.16.0/command/mod.ts"; | ||
} from "https://x.nest.land/cliffy@0.18.2/command/mod.ts"; | ||
|
||
export { string as stringType } from "https://x.nest.land/cliffy@0.16.0/flags/types/string.ts"; | ||
export { string as stringType } from "https://x.nest.land/cliffy@0.18.2/flags/types/string.ts"; | ||
|
||
export { | ||
Checkbox, | ||
Confirm, | ||
Input, | ||
List, | ||
Select, | ||
} from "https://x.nest.land/cliffy@0.16.0/prompt/mod.ts"; | ||
} from "https://x.nest.land/cliffy@0.18.2/prompt/mod.ts"; | ||
|
||
export type { ITypeInfo } from "https://x.nest.land/cliffy@0.16.0/flags/types.ts"; | ||
export type { ITypeInfo } from "https://x.nest.land/cliffy@0.18.2/flags/types.ts"; | ||
|
||
/**************** semver ****************/ | ||
export * as semver from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
@@ -83,4 +83,4 @@ export type { DependencyTree } from "https://x.nest.land/[email protected]/deno/tre | |
export { dependencyTree } from "https://x.nest.land/[email protected]/deno/tree.ts"; | ||
|
||
/**************** wait ****************/ | ||
export { Spinner, wait } from "https://deno.land/x/[email protected].7/mod.ts"; | ||
export { Spinner, wait } from "https://deno.land/x/[email protected].10/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,6 +1,5 @@ | ||
import { | ||
basename, | ||
Checkbox, | ||
Command, | ||
Confirm, | ||
Input, | ||
|
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
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 |
---|---|---|
|
@@ -79,4 +79,4 @@ | |
"default": true | ||
} | ||
} | ||
} | ||
} |
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.5"; | ||
export const version = "0.3.6"; |