RSHIP / Installation
Installation (Locally):
Just install RSHIP via npm
or yarn
$ npm i rship -g # npm
$ yarn add rship --global # yarn
For contributing (Locally):
$ git clone %REPO_HERE%
$ cd $_
$ npm link
% git checkout -B feature/your-super-feature
For building (Locally):
$ ship run build
$ cp ./dist/application.tar.gz %desination_folder%
For building (Remote or CI):
$ cd %application_folder%
$ npm i rship --save-dev
$ vi package.json
{
"scripts": {
....
"build": "./node_modules/.bin/rship run build"
....
}
}
$ npm run build