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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: "14"
node-version: "18"

- uses: purescript-contrib/setup-purescript@main

Expand Down Expand Up @@ -41,4 +41,4 @@ jobs:
npm run build
npm test
spago docs --no-search
./dist/purescript-docs-search build-index
./dist/purescript-docs-search.cjs build-index
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: "14"
node-version: "18"

- uses: purescript-contrib/setup-purescript@main

Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
files: |
dist/docs-search-app.js
dist/purescript-docs-search
dist/purescript-docs-search.cjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -52,4 +52,4 @@ jobs:
run: |
mv ci-npmrc.txt .npmrc
npm ci
npm publish --non-interactive --access public
npm publish --non-interactive --access public
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.12 - 2022-08-31]

Changes:
- Package structure change: `dist/purescript-docs-search.cjs` has been moved to `dist/purescript-docs-search.cjs` due to NodeJS restrictions for `type: module` packages.

New features:
- Docs for each CLI option
- New `--source-files` option that allows to specify `.purs` sources (see below)

Bugfixes:
- Include modules with only re-exports in the module list ([#62](https://github.com/purescript/purescript-docs-search/issues/62))
- Fix `docs.json` parser for some types

## [0.0.11 - 2021-04-15]

Changes:
Expand Down
Loading