- Material Design elements
- Context Menu component
You can browse all the components at the following address:
http://devproducts.alfresco.com/
Let's suppose that for some reason you have changed a component and you want to test this changes. The example is based on the ng2-alfresco-login component, but you can use the same steps for any component.
- Move inside the component folder and link it.
cd ng2-alfresco-login
npm link
- Build the component with the watcher enabled.
npm run build:w
- From another terminal move inside the demo sub folder and link the component to the local node_modules folder.
cd demo
npm link ng2-alfresco-login
- Start the demo project.
npm run start