-
Notifications
You must be signed in to change notification settings - Fork 27
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:
- git clone https://github.com/progress/JSDO.git
- cd JSDO
- git checkout develop
- npm install
- npm run build:jsdo
- npm run build:jsdo-core
- npm run pack:jsdo-core
- cd packages\ng-datasource
- npm install ....\build\packages\progress-jsdo-core-7.0.0.tgz
- npm install
- npm install @angular/[email protected]
- npm install [email protected]
- npm install zone.js@~0.9.1
- npm install @types/node@8
- npm run build:ds
- npm run build:jsdo-angular
- 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
- DataSource API
- Starter Template Tutorial
- Using the JSDO component with plain HTML and JavaScript
- Using the JSDO and DataSource components with an existing NativeScript app
- Using the JSDO and DataSource components in an Angular web app (Angular-5.x)
- Using the JSDO and DataSource components in an Angular web app (Angular-6.x)
- Using the JSDO and DataSource components in a Node.js app