Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/future-ideas/deploy.md')
-rw-r--r--doc/future-ideas/deploy.md27
1 files changed, 0 insertions, 27 deletions
diff --git a/doc/future-ideas/deploy.md b/doc/future-ideas/deploy.md
deleted file mode 100644
index 9d2e17aa6..000000000
--- a/doc/future-ideas/deploy.md
+++ /dev/null
@@ -1,27 +0,0 @@
-npm-deploy(1) -- Deploy a package to a remote host
-==================================================
-
-## FUTURE
-
-This functionality does not yet exist.
-
-## SUMMARY
-
- npm deploy <pkg> [--host <hostname>]
-
-## DESCRIPTION
-
-This is a porcelain command. It is equivalent to doing:
-
- npm publish --registry $(npm config get host) <pkg>
- npm remote install <pkg-name>@<pkg-version>
-
-That is, it first publishes the package to the server specified
-by the `host` config, and then remotely installs that package
-on the host.
-
-## SEE ALSO
-
-* npm-remote(1)
-* npm-site(1)
-* npm-publish(1)