Skip to content

Commit cd64130

Browse files
committed
Release 12.0.0-beta.6
- Adds type information for sanctuary-type-identifiers 3
1 parent 2b6bfd6 commit cd64130

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ getPackageName ('package.json')
102102
### Global Bundle (CDN)
103103

104104
Fluture is hosted in full with all of its dependencies at
105-
https://cdn.jsdelivr.net/gh/fluture-js/[email protected].5/dist/bundle.js
105+
https://cdn.jsdelivr.net/gh/fluture-js/[email protected].6/dist/bundle.js
106106

107107
This script will add `Fluture` to the global scope.
108108

dist/bundle.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Fluture bundled; version 12.0.0-beta.5
2+
* Fluture bundled; version 12.0.0-beta.6
33
*/
44

55
var Fluture = (function () {
@@ -738,6 +738,8 @@ var Fluture = (function () {
738738
Future[FL.of] = resolve;
739739
Future[FL.chainRec] = chainRec;
740740

741+
Future.prototype['@@type'] = $$type;
742+
741743
Future.prototype['@@show'] = function Future$show(){
742744
return this.toString();
743745
};
@@ -2155,6 +2157,7 @@ var Fluture = (function () {
21552157
Concurrently.prototype =
21562158
construct.prototype = {constructor: construct};
21572159

2160+
proto[$$type] = OUTERTYPE;
21582161
construct[$$type] = OUTERTYPE;
21592162

21602163
var mzero = new Concurrently (zero);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluture",
3-
"version": "12.0.0-beta.5",
3+
"version": "12.0.0-beta.6",
44
"description": "FantasyLand compliant (monadic) alternative to Promises",
55
"main": "index.cjs",
66
"type": "module",

0 commit comments

Comments
 (0)