Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 12
node-version: 24

# Install an older Python (needed for the javascript build to succeed)
# Install an older Python (needed for the javascript/scss build to succeed)
- name: Set up temporary Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9

- name: Build JS assets
run: |
cd javascript
cd web
npm install --include=dev
npm run build

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 12
node-version: 24

# Install an older Python (needed for the javascript build to succeed)
# Install an older Python (needed for the javascript/scss build to succeed)
- name: Set up temporary Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9

- name: Build JS assets
run: |
cd javascript
cd web
npm install --include=dev
npm run build

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ensure the sdist doesn't get unnecessary build files.
recursive-exclude javascript *
recursive-exclude web *
recursive-exclude screenshots *
recursive-exclude .github *
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,18 @@ versions. There is currently no intelligent cache invalidation for those cases.

## Development

In order to build the ``simple-repository-browser``, first:
In order to build the ``simple-repository-browser`` you will need access to npm. If not available on the development host,
you can do it in a docker container first:

```bash
cd javascript
docker run --rm -v $PWD:/workdir -it node bash
cd /workdir
```

Bundle the web app:

```bash
cd web
npm install --include=dev
npm run build
cd ..
Expand Down
Loading