Skip to content

Commit

Permalink
update 0.15.7 (#78)
Browse files Browse the repository at this point in the history
* update to 0.15.7

- convert commonJS to ES module
- update package-set
- adapt to changes in other packages

* update packages

use my repo of purescript-suggest
drop unused dependencies

* some more changes following Migration Guide

* style

* A couple more fixes after updating the purs and node versions

* remove custom package setting

---------

Co-authored-by: Christoph Hegemann <christoph@deepchannel.com>
  • Loading branch information
semio and Christoph Hegemann committed May 11, 2023
1 parent 8f8a192 commit 60a818d
Show file tree
Hide file tree
Showing 14 changed files with 1,029 additions and 557 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm ci
npm run build
env:
CI: true
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/node_modules/
/.pulp-cache/
/output/
/.psci*
/.psa-stash
Expand Down
5 changes: 1 addition & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/.github/
/.spago/
/.pulp-cache/
/.psci*
/output/*/externs.json
/output/*/externs.cbor
/output/cache-db.json
*.dhall
# Until npm stops auto-ignoring Argonaut.Core https://github.com/npm/npm-packlist/pull/38
!*.core
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/usr/bin/env node
require('./output/Main').main();
import { main } from './output/Main/index.js'
main()

0 comments on commit 60a818d

Please sign in to comment.