Skip to content

How to build npm packages for the JSDO from develop branch

edselg edited this page Dec 18, 2019 · 2 revisions

The following steps show how to build npm packages for the JSDO from the develop branch:

  1. git clone https://github.com/progress/JSDO.git
  2. cd JSDO
  3. git checkout develop
  4. npm install
  5. npm run build:jsdo
  6. npm run build:jsdo-core
  7. npm run pack:jsdo-core
  8. cd packages\ng-datasource
  9. npm install ....\build\packages\progress-jsdo-core-7.0.0.tgz
  10. npm install
  11. npm install @angular/[email protected]
  12. npm install [email protected]
  13. npm install zone.js@~0.9.1
  14. npm install @types/node@8
  15. npm run build:ds
  16. npm run build:jsdo-angular
  17. npm run pack:jsdo-angular

Once you have build the packages for jsdo-core and jsdo-angular, then you can install the packages in your own projects by referring to the .tgz files:

  • npm install \JSDO\build\packages\progress-jsdo-core-7.0.0.tgz
  • npm install \JSDO\packages\ng-datasource\build\packages\progress-jsdo-angular-7.0.0.tgz
Clone this wiki locally