1.0.3 • Published 9 years ago
deploy-versioning v1.0.3
deploy-versioning
Deploy your code keeping older versions.
Install
npm install deploy-versioning --save-devUsage
Just add a script in your package.json:
{
...
"scripts": {
"deploy": "deploy-versioning dist user@host:/srv/myapp"
}
...
}And run it:
npm run deployIt will create the following file structure in your production server:
/srv/myapp
+-- 1.0.0
+-- 1.0.1
+-- 1.0.2
+-- latest -> /srv/myapp/1.0.2Changelog
- 1.0.0
- Initial release :tada: