Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.27 KB

DEVELOPMENT.md

File metadata and controls

39 lines (28 loc) · 1.27 KB

Contribute to the Codebase

  • Clone the repository
  • install dependency with npm install
  • build the packages with npm run build
[in pdfme dir] $ npm install
[in pdfme dir] $ npm run build

At this point, to check if the build is done correctly, let's execute npm run test once. This will call the test suites for each package.

[in pdfme dir] $ npm run test

Then, run npm run dev on packages/common, packages/schemas, packages/generator, and packages/ui, and make sure that any changes are output to each packages dist folder.

[in pdfme/packages/common dir] $ npm run dev
[in pdfme/packages/schemas dir] $ npm run dev
[in pdfme/packages/ui dir] $ npm run dev
[in pdfme/packages/generator dir] $ npm run dev

If you want to check the changes in the browser, go to playground.

[in pdfme/playground dir] $ npm install
[in pdfme/playground dir] $ npm run dev

If npm run dev is running in each package, changes made will be reflected in the playground. (For the UI package, it may take about 5-10 seconds for the changes to be reflected.)

Please feel free to send a PR if you can fix bugs or add new features. Also, don't forget to add the necessary tests before sending a PR and make sure that the tests pass.

Happy hacking!