Skip to content

Commit 2fc7136

Browse files
authored
Merge pull request #2 from purescript-contrib/initial-updates
Initial release updates
2 parents 0e19e58 + c1c136f commit 2fc7136

File tree

7 files changed

+41
-5722
lines changed

7 files changed

+41
-5722
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**Description of the change**
2+
3+
Clearly and concisely describe the purpose of the pull request. If this PR relates to an existing issue or change proposal, please link to it. Include any other background context that would help reviewers understand the motivation for this PR.
4+
5+
---
6+
7+
**Checklist:**
8+
9+
- [ ] Added the change to the changelog's "Unreleased" section with a reference to this PR (e.g. "- Made a change (#0000)")
10+
- [ ] Linked any existing issues or proposals that this pull request should close
11+
- [ ] Updated or added relevant documentation
12+
- [ ] Added a test for the contribution (if applicable)

.gitignore

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
/.*
2+
!/.gitignore
3+
!/.eslintrc.json
4+
!/.tidyrc.json
5+
!/.github/
6+
package-lock.json
17
/bower_components/
28
/node_modules/
39
/output/
4-
/.psci*
5-
/src/.webpack.js
6-
.spago
7-
.psc-ide-port
10+
/generated-docs/

.purs-repl

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
Notable changes to this project are 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).
4+
5+
## [Unreleased]
6+
7+
Breaking changes:
8+
9+
New features:
10+
11+
Bugfixes:
12+
13+
Other improvements:
14+
15+
16+
## [v1.0.0](https://github.com/purescript-contrib/purescript-js-promise-aff/releases/tag/v1.0.0) - 2022-11-09
17+
18+
Initial release, forked from `purescript-aff-promise` and intended as its replacement from now on.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# purescript-js-promise-aff
22

3+
[![Latest release](http://img.shields.io/github/release/purescript-contrib/purescript-js-promise-aff.svg)](https://github.com/purescript-web/purescript-js-promise-aff/releases)
4+
[![Build status](https://github.com/purescript-contrib/purescript-js-promise-aff/workflows/CI/badge.svg?branch=master)](https://github.com/purescript-web/purescript-js-promise-aff/actions?query=workflow%3ACI+branch%3Amaster)
5+
[![Pursuit](https://pursuit.purescript.org/packages/purescript-js-promise-aff/badge)](https://pursuit.purescript.org/packages/purescript-js-promise-aff)
6+
37
Simple library for interop between Aff and JavaScript promises.
48

59
No typeclass instances etc are provided to use Promises directly - the intention is that your PureScript code uses Aff

0 commit comments

Comments
 (0)