Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 985 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 985 Bytes

Activity showcase

Overview

This repository uses workspaces to link multiple separate packages together and to hoist all shared dependencies to the top level node_modules.

In addition, we use lerna for running commands for all contained packages.

Local development

# get the source
git clone [email protected]:digital-blueprint/activities.git
cd activities
git submodule update --init

# install dependencies
npm install

# constantly build activity-showcase and run a local web-server on port 8001 
cd ./activity-showcase && npm run watch

# run tests
npm test

Jump to https://localhost:8001, and you should get the Activity Showcase page.

cd packges/some-package and continue development with npm run watch etc.

Tip

Make sure that the activity-showcase package has your package as dependency!

Other commands

  • npm run test - Run test for all packages
  • npm run clean - Removes all node_modules directories.