Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
pix666 committed Oct 8, 2023
2 parents c13e1a6 + f3e3c63 commit c70d639
Show file tree
Hide file tree
Showing 24 changed files with 4,525 additions and 8,321 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel twine
- name: Install NPM dependencies
run: npm ci
run: yarn install
- name: Run webpack
run: npx webpack --mode=production
run: yarn build
- name: Build and publish
env:
TWINE_USERNAME: __token__
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
run: |
python -m pip install --upgrade pip wheel setuptools tox
- name: Install NPM dependencies
run: npm ci
run: yarn install
- name: Run webpack
run: npx webpack --mode=production
run: yarn build
- name: Run tox targets for ${{ matrix.python-version }}
run: |
ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}")
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.17.0](https://github.com/dldevinc/paper-streamfield/tree/v0.17.0) - 2023-10-08

### ⚠ BREAKING CHANGES

- Added new `mimetype` field.

## [0.16.2](https://github.com/dldevinc/paper-streamfield/tree/v0.16.2) - 2023-09-26

### Features
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
```shell
pip install -r ./requirements.txt
pip install -e .[full]
npm i
yarn install
```

1. Compile static files
```shell
npm run build
yarn build
```
1. Create `.env` file:
```shell
Expand Down
Loading

0 comments on commit c70d639

Please sign in to comment.