https://github.com/e5r/dev
Um melhoramento no http://e5r.github.io/env
https://github.com/e5r/dev
Last synced: 10 months ago
JSON representation
Um melhoramento no http://e5r.github.io/env
- Host: GitHub
- URL: https://github.com/e5r/dev
- Owner: e5r
- License: other
- Created: 2015-11-05T17:42:24.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2019-02-13T18:17:06.000Z (almost 7 years ago)
- Last Synced: 2024-04-26T22:43:01.099Z (over 1 year ago)
- Language: JavaScript
- Size: 418 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
E5R Dev
=======
E5R Tools for Development Team.
## Windows build
```
npm install
make dist
```
## Unix build
```
npm install
./make dist
```
## Generate NPM version
Change the constant `TOOL_VERSION` in `src/global-consts.js` file.
```
npm version major|minor|patch -m "Release version %s"
npm publish
```
## Install on Windows
### CMD
```
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$DevShell='cmd';$wc=New-Object System.Net.WebClient;$wc.Proxy=[System.Net.WebRequest]::DefaultWebProxy;$wc.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;Invoke-Expression ($wc.DownloadString('https://raw.githubusercontent.com/e5r/dev/develop/install.ps1'))}" && if exist %UserProfile%\.dev\bin\dev.cmd %UserProfile%\.dev\bin\dev.cmd update-devenvvars
```
### PowerShell
```powershell
&{$wc=New-Object System.Net.WebClient;$wc.Proxy=[System.Net.WebRequest]::DefaultWebProxy;$wc.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;Invoke-Expression ($wc.DownloadString('https://raw.githubusercontent.com/e5r/dev/develop/install.ps1'))}
```
## Install on Unix (_Linux and macOS_)
### curl (eg: macOS)
```
curl -sSL https://raw.githubusercontent.com/e5r/dev/develop/install.sh | sh && source ~/.profile
```
### wget (eg: Ubuntu)
```
wget --no-check-certificate -O- https://raw.githubusercontent.com/e5r/dev/develop/install.sh | sh && . ~/.profile
```
## Start usage
```
dev --help
```