Skip to content

Commit

Permalink
Merge pull request #3 from adrian-bacon-fico/main
Browse files Browse the repository at this point in the history
Fix the 0.4.2 build
  • Loading branch information
lydian authored Mar 29, 2024
2 parents a303341 + 6963f81 commit 3a38fcc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
- name: Install Python
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -80,4 +80,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ build: venv

clean:
venv/bin/jlpm run clean:all || echo 'not cleaning jlpm'
rm -rf venv/
rm -rf venv node_modules yarn.lock *.egg-info
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
"rootDir": "src",
"strict": true,
"strictNullChecks": false,
"target": "es2017",
"types": []
"target": "es2020",
"types": [],
"skipLibCheck": true
},
"include": ["src/*"]
}

0 comments on commit 3a38fcc

Please sign in to comment.