mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 03:40:08 +00:00
feat(mix): update mix
commands and descriptions (#10273)
This commit is contained in:
parent
c2b9ae2937
commit
4f67b02a9f
2 changed files with 43 additions and 16 deletions
|
@ -10,10 +10,10 @@ plugins=(... mix)
|
||||||
## Supported Task Types
|
## Supported Task Types
|
||||||
|
|
||||||
| Task Type | Documentation |
|
| Task Type | Documentation |
|
||||||
|-------------------------|----------------------------------------------------------|
|
|--------------------------|----------------------------------------------------------|
|
||||||
| Elixir | [Elixir Lang](https://elixir-lang.org/) |
|
| Elixir | [Elixir Lang](https://elixir-lang.org/) |
|
||||||
| Phoenix v1.2.1 and below| [Phoenix](https://hexdocs.pm/phoenix/1.2.1/Phoenix.html) |
|
| Phoenix v1.2.1 and below | [Phoenix](https://hexdocs.pm/phoenix/1.2.1/Phoenix.html) |
|
||||||
| Phoenix v1.3.0 and above| [Phoenix](https://hexdocs.pm/phoenix/Phoenix.html) |
|
| Phoenix v1.3.0 and above | [Phoenix](https://hexdocs.pm/phoenix/Phoenix.html) |
|
||||||
| Ecto | [Ecto](https://hexdocs.pm/ecto/Ecto.html) |
|
| Ecto | [Ecto](https://hexdocs.pm/ecto/Ecto.html) |
|
||||||
| Hex | [Hex](https://hex.pm/) |
|
| Hex | [Hex](https://hex.pm/) |
|
||||||
| Nerves | [Nerves](https://nerves-project.org/) |
|
| Nerves | [Nerves](https://nerves-project.org/) |
|
||||||
|
|
|
@ -5,8 +5,10 @@
|
||||||
|
|
||||||
local -a _1st_arguments
|
local -a _1st_arguments
|
||||||
_1st_arguments=(
|
_1st_arguments=(
|
||||||
|
'app.config:Configures all registered apps'
|
||||||
'app.start:Start all registered apps'
|
'app.start:Start all registered apps'
|
||||||
'archive:List all archives'
|
'app.tree:Prints the application tree'
|
||||||
|
'archive:Lists installed archives'
|
||||||
'archive.build:Archive this project into a .ez file'
|
'archive.build:Archive this project into a .ez file'
|
||||||
'archive.install:Install an archive locally'
|
'archive.install:Install an archive locally'
|
||||||
'archive.uninstall:Uninstall archives'
|
'archive.uninstall:Uninstall archives'
|
||||||
|
@ -18,6 +20,7 @@ _1st_arguments=(
|
||||||
"deps.clean:Remove the given dependencies' files"
|
"deps.clean:Remove the given dependencies' files"
|
||||||
'deps.compile:Compile dependencies'
|
'deps.compile:Compile dependencies'
|
||||||
'deps.get:Get all out of date dependencies'
|
'deps.get:Get all out of date dependencies'
|
||||||
|
'deps.tree:Prints the dependency tree'
|
||||||
'deps.unlock:Unlock the given dependencies'
|
'deps.unlock:Unlock the given dependencies'
|
||||||
'deps.update:Update the given dependencies'
|
'deps.update:Update the given dependencies'
|
||||||
'do:Executes the tasks separated by comma'
|
'do:Executes the tasks separated by comma'
|
||||||
|
@ -30,27 +33,39 @@ _1st_arguments=(
|
||||||
'ecto.migrate:Runs Ecto migration'
|
'ecto.migrate:Runs Ecto migration'
|
||||||
'ecto.migrations:Displays the up / down migration status'
|
'ecto.migrations:Displays the up / down migration status'
|
||||||
'ecto.rollback:Reverts applied migrations'
|
'ecto.rollback:Reverts applied migrations'
|
||||||
|
'escript:Lists installed escripts'
|
||||||
'escript.build:Builds an escript for the project'
|
'escript.build:Builds an escript for the project'
|
||||||
|
'escript.install:Installs an escript locally'
|
||||||
|
'escript.uninstall:Uninstalls escripts'
|
||||||
'firmware:Nerves - Build a firmware image for the selected target platform'
|
'firmware:Nerves - Build a firmware image for the selected target platform'
|
||||||
'firmware.burn:Nerves - Writes the generated firmware image to an attached SDCard or file'
|
'firmware.burn:Nerves - Writes the generated firmware image to an attached SDCard or file'
|
||||||
'firmware.image:Nerves - Create a firmware image file that can be copied byte-for-byte'
|
'firmware.image:Nerves - Create a firmware image file that can be copied byte-for-byte'
|
||||||
'format:Formats the given files and patterns'
|
'format:Formats the given files and patterns'
|
||||||
'help:Print help information for tasks'
|
'help:Print help information for tasks'
|
||||||
'hex:Print hex help information'
|
'hex:Print hex help information'
|
||||||
'hex.config:Read or update hex config'
|
'hex.audit:Shows retired Hex deps for the current project'
|
||||||
'hex.docs:Publish docs for package'
|
'hex.build:Builds a new package version locally'
|
||||||
|
'hex.config:Reads, updates or deletes local Hex config'
|
||||||
|
'hex.docs:Fetches or opens documentation of a package'
|
||||||
'hex.info:Print hex information'
|
'hex.info:Print hex information'
|
||||||
|
'hex.organization:Manages Hex.pm organizations'
|
||||||
'hex.key:Hex API key tasks'
|
'hex.key:Hex API key tasks'
|
||||||
'hex.outdated:Shows outdated hex deps for the current project'
|
'hex.outdated:Shows outdated Hex deps for the current project'
|
||||||
'hex.owner:Hex package ownership tasks'
|
'hex.owner:Manages Hex package ownership'
|
||||||
|
'hex.package:Fetches or diffs packages'
|
||||||
'hex.publish:Publish a new package version'
|
'hex.publish:Publish a new package version'
|
||||||
|
'hex.registry:Manages local Hex registries'
|
||||||
|
'hex.repo:Manages Hex repositories'
|
||||||
|
'hex.retire:Retires a package version'
|
||||||
'hex.search:Search for package names'
|
'hex.search:Search for package names'
|
||||||
'hex.user:Hex user tasks'
|
'hex.sponsor:Show Hex packages accepting sponsorships'
|
||||||
|
'hex.user:Manages your Hex user account'
|
||||||
'loadconfig:Loads and persists the given configuration'
|
'loadconfig:Loads and persists the given configuration'
|
||||||
'local:List local tasks'
|
'local:List local tasks'
|
||||||
'local.hex:Install hex locally'
|
'local.hex:Install hex locally'
|
||||||
'local.phoenix:Updates Phoenix locally'
|
'local.phoenix:Updates Phoenix locally'
|
||||||
'local.phx:Updates the Phoenix project generator locally'
|
'local.phx:Updates the Phoenix project generator locally'
|
||||||
|
'local.public_keys:Manages public keys'
|
||||||
'local.rebar:Install rebar locally'
|
'local.rebar:Install rebar locally'
|
||||||
'nerves.artifact:Create an artifact for a specified Nerves package'
|
'nerves.artifact:Create an artifact for a specified Nerves package'
|
||||||
'nerves.artifact.get:Nerves get artifacts'
|
'nerves.artifact.get:Nerves get artifacts'
|
||||||
|
@ -69,21 +84,33 @@ _1st_arguments=(
|
||||||
'phoenix.server:Starts applications and their servers'
|
'phoenix.server:Starts applications and their servers'
|
||||||
'phx.digest:Digests and compresses static files'
|
'phx.digest:Digests and compresses static files'
|
||||||
'phx.digest.clean:Removes old versions of static assets.'
|
'phx.digest.clean:Removes old versions of static assets.'
|
||||||
|
'phx.gen.auth:Generates authentication logic for a resource'
|
||||||
|
'phx.gen.cert:Generates a self-signed certificate for HTTPS testing'
|
||||||
'phx.gen.channel:Generates a Phoenix channel'
|
'phx.gen.channel:Generates a Phoenix channel'
|
||||||
'phx.gen.context:Generates a context with functions around an Ecto schema'
|
'phx.gen.context:Generates a context with functions around an Ecto schema'
|
||||||
'phx.gen.embedded:Generates an embedded Ecto schema file'
|
'phx.gen.embedded:Generates an embedded Ecto schema file'
|
||||||
'phx.gen.html:Generates controller, views, and context for an HTML resource'
|
'phx.gen.html:Generates controller, views, and context for an HTML resource'
|
||||||
'phx.gen.json:Generates controller, views, and context for a JSON resource'
|
'phx.gen.json:Generates controller, views, and context for a JSON resource'
|
||||||
|
'phx.gen.live:Generates LiveView, templates, and context for a resource'
|
||||||
|
'phx.gen.notifier:Generates a notifier that delivers emails by default'
|
||||||
'phx.gen.presence:Generates a Presence tracker'
|
'phx.gen.presence:Generates a Presence tracker'
|
||||||
'phx.gen.schema:Generates an Ecto schema and migration file'
|
'phx.gen.schema:Generates an Ecto schema and migration file'
|
||||||
'phx.gen.secret:Generates a secret'
|
'phx.gen.secret:Generates a secret'
|
||||||
'phx.new:Creates a new Phoenix v1.3.0 application'
|
'phx.gen.socket:Generates a Phoenix socket handler'
|
||||||
|
'phx.new:Creates a new Phoenix application'
|
||||||
'phx.new.ecto:Creates a new Ecto project within an umbrella project'
|
'phx.new.ecto:Creates a new Ecto project within an umbrella project'
|
||||||
'phx.new.web:Creates a new Phoenix web project within an umbrella project'
|
'phx.new.web:Creates a new Phoenix web project within an umbrella project'
|
||||||
'phx.routes:Prints all routes'
|
'phx.routes:Prints all routes'
|
||||||
'phx.server:Starts applications and their servers'
|
'phx.server:Starts applications and their servers'
|
||||||
|
'profile.cprof:Profiles the given file or expression with cprof'
|
||||||
|
'profile.eprof:Profiles the given file or expression with eprof'
|
||||||
|
'profile.fprof:Profiles the given file or expression with fprof'
|
||||||
|
'release:Assembles a self-contained release'
|
||||||
|
'release.init:Generates sample files for releases'
|
||||||
'run:Run the given file or expression'
|
'run:Run the given file or expression'
|
||||||
"test:Run a project's tests"
|
"test:Run a project's tests"
|
||||||
|
'test.coverage:Build report from exported test coverage'
|
||||||
|
'xref:Prints cross reference information'
|
||||||
'--help:Describe available tasks'
|
'--help:Describe available tasks'
|
||||||
'--version:Prints the Elixir version information'
|
'--version:Prints the Elixir version information'
|
||||||
)
|
)
|
||||||
|
@ -93,7 +120,7 @@ __task_list ()
|
||||||
local expl
|
local expl
|
||||||
declare -a tasks
|
declare -a tasks
|
||||||
|
|
||||||
tasks=(app.start archive archive.build archive.install archive.uninstall clean cmd compile compile.protocols deps deps.clean deps.compile deps.get deps.unlock deps.update do escript.build format help hex hex.config hex.docs hex.info hex.key hex.outdated hex.owner hex.publish hex.search hex.user loadconfig local local.hex local.rebar new phoenix.digest phoenix.gen.channel phoenix.gen.html phoenix.gen.json phoenix.gen.model phoenix.gen.secret phoenix.new phoenix.routes phoenix.server phx.digest phx.digest.clean phx.gen.channel phx.gen.context phx.gen.embedded phx.gen.html phx.gen.json phx.gen.presence phx.gen.schema phx.gen.secret phx.new phx.new.ecto phx.new.web phx.routes phx.server run test)
|
tasks=(app.config app.start app.tree archive archive.build archive.install archive.uninstall clean cmd compile compile.protocols deps deps.clean deps.compile deps.get deps.tree deps.unlock deps.update do ecto.create ecto.drop ecto.dump ecto.gen.migration ecto.gen.repo ecto.load ecto.migrate ecto.migrations ecto.rollback escript escript.build escript.install escript.uninstall firmware firmware.burn firmware.image format help hex hex.audit hex.build hex.config hex.docs hex.info hex.organization hex.key hex.outdated hex.owner hex.package hex.publish hex.registry hex.repo hex.retire hex.search hex.sponsor hex.user loadconfig local local.hex local.phoenix local.phx local.public_keys local.rebar nerves.artifact nerves.artifact.get nerves.info nerves.new nerves.release.init new phoenix.digest phoenix.gen.channel phoenix.gen.html phoenix.gen.json phoenix.gen.model phoenix.gen.secret phoenix.new phoenix.routes phoenix.server phx.digest phx.digest.clean phx.gen.auth phx.gen.cert phx.gen.channel phx.gen.context phx.gen.embedded phx.gen.html phx.gen.json phx.gen.live phx.gen.notifier phx.gen.presence phx.gen.schema phx.gen.secret phx.gen.socket phx.new phx.new.ecto phx.new.web phx.routes phx.server profile.cprof profile.eprof profile.fprof release release.init run test test.coverage xref)
|
||||||
|
|
||||||
_wanted tasks expl 'help' compadd $tasks
|
_wanted tasks expl 'help' compadd $tasks
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue