Skip to content

Commit

Permalink
[Release] Initial version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nev21 committed Jan 22, 2023
1 parent 057bf2c commit b53ef44
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# v0.1.0 Jan 21st, 2023

## Changelog

- #1 Initial Implementation includes
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ doAwait(myPromise, (result) => {

While the examples above are using the `createPromise` you can directly use the `createSyncPromise`, `createAsyncPromise`, `createIdlePromise` or `createNativePromise`, you can also mix and match them (ie. they don't all have to be the same implementation). The `createPromise` alias is provided to enable switching the underlying Promise implementation without changing any of your code.

## Release Notes

- [Releases](https://github.com/nevware21/ts-async/releases)
- [Changelist Notes](./CHANGELIST.md)

## Browser Support

General support is currently set to ES5 supported runtimes higher.
Expand Down
54 changes: 54 additions & 0 deletions docs/typedoc/assets/main.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions lib/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# NPM Ignore

# ignore everything
*

# ... but these files
!package.json
!tsconfig.json
!tsconfig.**.json
!/README.md
!/LICENSE
!dist-es**/**
!dist/**
!src/**
!types/**
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"test:node": "cd lib && npm run test:node",
"test:worker": "cd lib && npm run test:worker",
"debug:browser": "cd lib && npm run debug:browser",
"debug:worker": "cd lib && npm run debug:worker"
"debug:worker": "cd lib && npm run debug:worker",
"prep_release": "npm run cleanBuild && cd lib && npm pack"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b53ef44

Please sign in to comment.