Skip to content

Commit

Permalink
Bump fluture from ^12.0.0 to ^13.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dicearr committed Aug 20, 2020
1 parent 747546f commit 7971cd7
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion examples/bootstrap/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Z from 'sanctuary-type-classes';
import createError from 'http-errors';
import qs from 'querystring';

import {coalesce, reject, node} from 'fluture/index.js';
import {coalesce, reject, node} from 'fluture';
import {get, lift, hoist, go, modify} from '../../index.js';
import {getService, putService} from './util.js';

Expand Down
2 changes: 1 addition & 1 deletion examples/bootstrap/bootstrappers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {getService, putService} from './util.js';
import Z from 'sanctuary-type-classes';
import R from 'ramda';
import {log} from 'util';
import Future, {node, attempt} from 'fluture/index.js';
import Future, {node, attempt} from 'fluture';
import config from 'config';
import mysql from 'mysql';

Expand Down
2 changes: 1 addition & 1 deletion examples/bootstrap/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint no-console:0 */

import {fork} from 'fluture/index.js';
import {fork} from 'fluture';
import R from 'ramda';

import {run} from '../../index.js';
Expand Down
2 changes: 1 addition & 1 deletion examples/bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"description": "",
"dependencies": {
"config": "^3.0.1",
"fluture": "^12.0.0",
"fluture": "^13.0.1",
"http-errors": "^1.5.1",
"monastic": "^2.0.0",
"mysql": "^2.12.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"license": "WTFPL",
"dependencies": {
"express": "^4.14.0",
"fluture": "^12.0.0",
"fluture": "^13.0.1",
"monastic": "^2.0.0",
"sanctuary-type-classes": "^12.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/readme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "WTFPL",
"dependencies": {
"fluture": "^12.0.0",
"fluture": "^13.0.1",
"monastic": "^2.0.0",
"sanctuary-type-classes": "^12.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
//. - **[Bootstrap][example-3]** an example showing application structure.
//. - **[Real World][example-4]** how momi is being used in real life.

import {Future, fork, reject as rejectF} from 'fluture/index.js';
import {Future, fork, reject as rejectF} from 'fluture';
import {StateT} from 'monastic';
import http from 'http';
import Z from 'sanctuary-type-classes';
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
"sanctuary-type-classes": "^12.0.0"
},
"peerDependencies": {
"fluture": ">=12.0.0 <13.0.0",
"fluture": ">=13.0.1 <14.0.0",
"monastic": "^3.0.1"
},
"devDependencies": {
"c8": "^7.1.0",
"codecov": "^3.2.0",
"fluture": "^12.0.0",
"fluture": "^13.0.1",
"monastic": "^3.0.1",
"oletus": "^3.0.0",
"rollup": "^2.0.0",
Expand Down
8 changes: 1 addition & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
input: 'index.js',
external: [
'fluture/index.js',
'fluture',
'http',
'monastic',
'sanctuary-type-classes',
Expand All @@ -11,11 +11,5 @@ export default {
name: 'momi',
file: 'index.cjs',
interop: false,
paths: {
'fluture/index.js': 'fluture',
},
globals: {
'fluture/index.js': 'Fluture',
},
},
};
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Z from 'sanctuary-type-classes';
import assert from 'assert';
import {compose} from 'monastic';
import test from 'oletus';
import {resolve, reject as rejectF} from 'fluture/index.js';
import {resolve, reject as rejectF} from 'fluture';
import {equivalence} from 'fluture/test/assertions.js';

import {
Expand Down

0 comments on commit 7971cd7

Please sign in to comment.