Tools and utility functions used to build and develop Miruken's libraries.
- Create an miruken directory to hold all of the projects.
mkdir miruken
- Change to the new directory
cd aurelia
- Clone this repository into the
tools
directory. This repo contains the helper tools for creating the dev environment.
git clone https://github.com/aurelia/tools.git
- Clone the skeleton-navigation also which is the base app for testing -
git clone https://github.com/aurelia/skeleton-navigation.git
- Change directory into skeleton-navigation
cd skeleton-navigation
- Install the skeleton-navigation application's dependencies:
npm install
jspm install
- Build the dev environment. This will create all of the directories inside of
aurelia
under the proper name,git clone
them all and then perform agulp build
.
gulp build-dev-env
Now you have the ability to update the repos locally, make changes, and use those in the skeleton app in the aurelia
directory by using the gulp update-own-deps
command.
Alternatively, run gulp pull-dev-env
to only pull down each aurelia
dependency and not perform builds.