Skip to content

Commit ccc95a3

Browse files
📦 deps: Replace deprecated dependency.
1 parent ec1555e commit ccc95a3

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const counter = {
105105
```
106106

107107
See also
108-
[@aureooms/js-measure](https://make-github-pseudonymous-again.github.io/js-measure/file/src/1-api/1-Measures.js.html)
108+
[@functional-abstraction/measure](https://functional-abstraction.github.io/measure/file/src/1-api/1-Measures.js.html)
109109
for more examples of measures and see
110110
[@aureooms/js-persistent](https://github.com/make-github-pseudonymous-again/js-persistent)
111111
for examples of data structures that can be build on top of this abstraction.

doc/manual/example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Example
22

33
```js
4-
import { Measures } from '@aureooms/js-measure' ;
4+
import { Measures } from '@functional-abstraction/measure' ;
55
import { gt } from '@functional-abstraction/predicate' ;
66

77
const { COUNTER } = Measures ;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
},
6565
"dependencies": {},
6666
"devDependencies": {
67-
"@aureooms/js-measure": "2.0.1",
6867
"@babel/core": "7.14.3",
6968
"@babel/preset-env": "7.14.2",
7069
"@babel/register": "7.13.16",
7170
"@commitlint/cli": "12.1.4",
71+
"@functional-abstraction/measure": "^3.0.0",
7272
"@functional-abstraction/predicate": "^3.0.2",
7373
"@iterable-iterator/chain": "^1.0.0",
7474
"@iterable-iterator/list": "^0.0.2",

src/3-tree/base/Tree.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Tree.prototype.force = function () {
2626
* @example
2727
* // returns 'ab'
2828
* import { from } from '@functional-data-structure/finger-tree' ;
29-
* import { Measures : { SIZE } } from '@aureooms/js-measure' ;
29+
* import { Measures : { SIZE } } from '@functional-abstraction/measure' ;
3030
* let tree = from( SIZE , 'abc' ) ;
3131
* tree = tree.takeUntil( measure => measure > 2 ) ;
3232
* [ ...tree ].join('') ;
@@ -48,7 +48,7 @@ Tree.prototype.takeUntil = function (predicate) {
4848
* @example
4949
* // returns 'c'
5050
* import { from } from '@functional-data-structure/finger-tree' ;
51-
* import { Measures : { SIZE } } from '@aureooms/js-measure' ;
51+
* import { Measures : { SIZE } } from '@functional-abstraction/measure' ;
5252
* let tree = from( SIZE , 'abc' ) ;
5353
* tree = tree.dropUntil( measure => measure > 2 ) ;
5454
* [ ...tree ].join('') ;
@@ -68,7 +68,7 @@ Tree.prototype.dropUntil = function (predicate) {
6868
* @example
6969
* // returns 'abc123'
7070
* import { from } from '@functional-data-structure/finger-tree' ;
71-
* import { Measures : { SIZE } } from '@aureooms/js-measure' ;
71+
* import { Measures : { SIZE } } from '@functional-abstraction/measure' ;
7272
* let tree = from( SIZE , 'abc' ).append('123') ;
7373
* [ ...tree ].join('') ;
7474
*
@@ -87,7 +87,7 @@ Tree.prototype.append = function (iterable) {
8787
* @example
8888
* // returns '123abc'
8989
* import { from } from '@functional-data-structure/finger-tree' ;
90-
* import { Measures : { SIZE } } from '@aureooms/js-measure' ;
90+
* import { Measures : { SIZE } } from '@functional-abstraction/measure' ;
9191
* let tree = from( SIZE , 'abc' ).prepend('123') ;
9292
* [ ...tree ].join('') ;
9393
*

test/src/Empty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {gt} from '@functional-abstraction/predicate';
66

test/src/FingerTree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {map} from '@iterable-iterator/map';
66
import {list} from '@iterable-iterator/list';

test/src/github-issue-121.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {gt} from '@functional-abstraction/predicate';
66

test/src/github-issue-73.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {list} from '@iterable-iterator/list';
66

test/src/methods/isEmpty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {range} from '@iterable-iterator/range';
66

test/src/methods/reversed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {Measures} from '@aureooms/js-measure';
3+
import {Measures} from '@functional-abstraction/measure';
44

55
import {list} from '@iterable-iterator/list';
66
import {range} from '@iterable-iterator/range';

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
# yarn lockfile v1
33

44

5-
"@aureooms/[email protected]":
6-
version "2.0.1"
7-
resolved "https://registry.yarnpkg.com/@aureooms/js-measure/-/js-measure-2.0.1.tgz#bd346a93bd2d4a07aa396e73e1ebc38f397aa73e"
8-
integrity sha512-Uq/m32HDHDydX2Pi9a+wfS22rIdn8C3xY8RrH9HQ3pOqcKty5dNFO323b9H3edyCnS64rMCo1IvWA0fno3FRUQ==
9-
105
116
version "7.12.11"
127
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
@@ -1160,6 +1155,11 @@
11601155
resolved "https://registry.yarnpkg.com/@failure-abstraction/error/-/error-5.0.5.tgz#0cf54ae8f76a025a8df015acd958192fb29a5e9a"
11611156
integrity sha512-1wYCScLBgVzSrXWDNg6KqZPCTtrbduDIxGGx3OXfGXQgWusFC8vdgKL6XLycAgsv3FRx8jardWQGYnEHUCccQQ==
11621157

1158+
"@functional-abstraction/measure@^3.0.0":
1159+
version "3.0.0"
1160+
resolved "https://registry.yarnpkg.com/@functional-abstraction/measure/-/measure-3.0.0.tgz#b1c83e11ff37201962bc2d2f2001bb7fd64068ab"
1161+
integrity sha512-1PUGb317QGA7CXQodL5cYVfiF2AqmDGBQ0NWvwJJbE4BOEJGniqJ7Y0vLVLUqA9A7LDYxEbt+JsKPrcOdWUM4w==
1162+
11631163
"@functional-abstraction/predicate@^3.0.2":
11641164
version "3.0.2"
11651165
resolved "https://registry.yarnpkg.com/@functional-abstraction/predicate/-/predicate-3.0.2.tgz#b54022b29c51124a34621b9579635ad0bc463a38"

0 commit comments

Comments
 (0)