Skip to content

Commit

Permalink
Release 13.0.1
Browse files Browse the repository at this point in the history
Fixes direct imports of 'index.js', 'test/assertions.js' and
'test/arbitraries.js' for Node 14 users.
  • Loading branch information
Avaq committed Aug 20, 2020
1 parent f1eff52 commit 1225fe0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ single files that come with all of Fluture's dependencies pre-bundled.
- [Fluture Module Minified][]: A minified EcmaScript module without TypeScript
typings. Not recommended for Deno.

[Fluture Script]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].0/dist/bundle.js
[Fluture Script Minified]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].0/dist/bundle.min.js
[Fluture Module]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].0/dist/module.js
[Fluture Module Minified]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].0/dist/module.min.js
[Fluture Script]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].1/dist/bundle.js
[Fluture Script Minified]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].1/dist/bundle.min.js
[Fluture Module]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].1/dist/module.js
[Fluture Module Minified]: https://cdn.jsdelivr.net/gh/fluture-js/[email protected].1/dist/module.min.js

## Usage

Expand Down
2 changes: 1 addition & 1 deletion dist/bundle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Fluture bundled; version 13.0.0
* Fluture bundled; version 13.0.1
*/

var Fluture = (function () {
Expand Down
4 changes: 2 additions & 2 deletions dist/module.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* Fluture bundled; version 13.0.0
* Fluture bundled; version 13.0.1
*/

/// <reference types="https://cdn.jsdelivr.net/gh/fluture-js/[email protected].0/index.d.ts" />
/// <reference types="https://cdn.jsdelivr.net/gh/fluture-js/[email protected].1/index.d.ts" />

function createCommonjsModule(fn, basedir, module) {
return module = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fluture",
"version": "13.0.0",
"version": "13.0.1",
"description": "FantasyLand compliant (monadic) alternative to Promises",
"main": "index.cjs",
"type": "module",
Expand Down

0 comments on commit 1225fe0

Please sign in to comment.