-
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 #95 from nestdotland/chore/rename-cli-options
Rename cli options (breaking changes)
- Loading branch information
Showing
7 changed files
with
84 additions
and
77 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { desc, run, sh, task } from "https://x.nest.land/[email protected].1/mod.ts"; | ||
import { desc, run, sh, task } from "https://x.nest.land/[email protected].4/mod.ts"; | ||
import { version } from "./src/version.ts"; | ||
|
||
desc("Run tests."); | ||
|
@@ -40,14 +40,14 @@ task("link", [], async function () { | |
desc("Reports the details of what would have been published."); | ||
task("dry-publish", [], async function () { | ||
await sh( | ||
`deno run -A --unstable eggs.ts publish eggs -do --no-check-all --check-installation --entry eggs.ts --version ${version}-dev --handsfree --dry-run `, | ||
`deno run -A --unstable eggs.ts publish eggs -doY --no-check --check-installation --entry eggs.ts --version ${version}-dev --dry-run `, | ||
); | ||
}); | ||
|
||
desc("Publishes eggs to the nest.land registry."); | ||
task("publish", [], async function () { | ||
await sh( | ||
`deno run -A --unstable eggs.ts publish eggs -do --no-check-all --check-installation --entry eggs.ts --version ${version} --handsfree`, | ||
`deno run -A --unstable eggs.ts publish eggs -doY --no-check --check-installation --entry eggs.ts --version ${version}`, | ||
); | ||
}); | ||
|
||
|
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 |
---|---|---|
|
@@ -9,56 +9,56 @@ export { | |
join, | ||
relative, | ||
resolve, | ||
} from "https://x.nest.land/std@0.70.0/path/mod.ts"; | ||
} from "https://x.nest.land/std@0.74.0/path/mod.ts"; | ||
|
||
export { | ||
exists, | ||
existsSync, | ||
expandGlob, | ||
expandGlobSync, | ||
walkSync, | ||
} from "https://x.nest.land/std@0.70.0/fs/mod.ts"; | ||
} from "https://x.nest.land/std@0.74.0/fs/mod.ts"; | ||
|
||
export * as log from "https://x.nest.land/std@0.70.0/log/mod.ts"; | ||
export * as log from "https://x.nest.land/std@0.74.0/log/mod.ts"; | ||
|
||
export { LogRecord } from "https://x.nest.land/std@0.70.0/log/logger.ts"; | ||
export { LogRecord } from "https://x.nest.land/std@0.74.0/log/logger.ts"; | ||
|
||
export type { LevelName } from "https://x.nest.land/std@0.70.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.70.0/log/levels.ts"; | ||
export type { LevelName } from "https://x.nest.land/std@0.74.0/log/levels.ts"; | ||
export { LogLevels } from "https://x.nest.land/std@0.74.0/log/levels.ts"; | ||
|
||
export { BaseHandler } from "https://x.nest.land/std@0.70.0/log/handlers.ts"; | ||
export { BaseHandler } from "https://x.nest.land/std@0.74.0/log/handlers.ts"; | ||
|
||
export * from "https://x.nest.land/std@0.70.0/fmt/colors.ts"; | ||
export * from "https://x.nest.land/std@0.74.0/fmt/colors.ts"; | ||
|
||
export { | ||
assert, | ||
assertEquals, | ||
assertMatch, | ||
} from "https://x.nest.land/std@0.70.0/testing/asserts.ts"; | ||
} from "https://x.nest.land/std@0.74.0/testing/asserts.ts"; | ||
|
||
export { | ||
parse as parseYaml, | ||
stringify as stringifyYaml, | ||
} from "https://x.nest.land/std@0.70.0/encoding/yaml.ts"; | ||
} from "https://x.nest.land/std@0.74.0/encoding/yaml.ts"; | ||
|
||
/**************** cliffy ****************/ | ||
export { | ||
Command, | ||
CompletionsCommand, | ||
HelpCommand, | ||
} from "https://x.nest.land/[email protected].1/command/mod.ts"; | ||
} from "https://x.nest.land/[email protected].3/command/mod.ts"; | ||
|
||
export { string as stringType } from "https://x.nest.land/[email protected].1/flags/types/string.ts"; | ||
export { string as stringType } from "https://x.nest.land/[email protected].3/flags/types/string.ts"; | ||
|
||
export { | ||
Checkbox, | ||
Confirm, | ||
Input, | ||
List, | ||
Select, | ||
} from "https://x.nest.land/[email protected].1/prompt/mod.ts"; | ||
} from "https://x.nest.land/[email protected].3/prompt/mod.ts"; | ||
|
||
export type { ITypeInfo } from "https://x.nest.land/[email protected].1/flags/types.ts"; | ||
export type { ITypeInfo } from "https://x.nest.land/[email protected].3/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
Oops, something went wrong.