Skip to content

Commit

Permalink
Add validation package to python and javascript to simplify testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Jun 23, 2024
1 parent af20e5b commit 2e46ed4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added
- Add validator package installation to build-javascript
- Add validators package installation to build-python

## 4.5.0 - 2024-06-21
### Added
- Add support to customise the application base directory
Expand Down
3 changes: 2 additions & 1 deletion src/Makefile-swaggy-c
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ generate-primary:

build-javascript:
npm install -g babel-cli
npm install validator
cd clients/javascript/generated/ && \
npm install && \
npm link && \
Expand All @@ -169,7 +170,7 @@ build-javascript:

build-python:
sudo apt-get install -y python-setuptools
pip install twine wheel pytest
pip install twine wheel pytest validators
cd clients/python/generated/ && \
pip install -r requirements.txt && \
python3 setup.py sdist bdist_wheel && \
Expand Down

0 comments on commit 2e46ed4

Please sign in to comment.