@blackglory/observe 0.1.6 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -5
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -0
- package/lib/index.js.map +1 -0
- package/lib/observe-addtion-of-descendant-nodes.js +7 -0
- package/lib/observe-addtion-of-descendant-nodes.js.map +1 -0
- package/lib/observe-removal-of-descendant-nodes.js +7 -0
- package/lib/observe-removal-of-descendant-nodes.js.map +1 -0
- package/lib/{es2018/observe-state-changes.js → observe-state-changes.js} +6 -10
- package/lib/observe-state-changes.js.map +1 -0
- package/lib/observe-url-changes.d.ts +2 -0
- package/lib/observe-url-changes.js +7 -0
- package/lib/observe-url-changes.js.map +1 -0
- package/lib/utils/from-mutation-observer.js +9 -0
- package/lib/utils/from-mutation-observer.js.map +1 -0
- package/package.json +31 -43
- package/dist/es2015/index.min.mjs +0 -16
- package/dist/es2015/index.min.mjs.map +0 -1
- package/dist/es2015/index.mjs +0 -9932
- package/dist/es2015/index.mjs.map +0 -1
- package/dist/es2015/index.umd.js +0 -9945
- package/dist/es2015/index.umd.js.map +0 -1
- package/dist/es2015/index.umd.min.js +0 -16
- package/dist/es2015/index.umd.min.js.map +0 -1
- package/dist/es2018/index.min.mjs +0 -16
- package/dist/es2018/index.min.mjs.map +0 -1
- package/dist/es2018/index.mjs +0 -9932
- package/dist/es2018/index.mjs.map +0 -1
- package/dist/es2018/index.umd.js +0 -9945
- package/dist/es2018/index.umd.js.map +0 -1
- package/dist/es2018/index.umd.min.js +0 -16
- package/dist/es2018/index.umd.min.js.map +0 -1
- package/lib/es2015/index.d.ts +0 -4
- package/lib/es2015/index.js +0 -21
- package/lib/es2015/index.js.map +0 -1
- package/lib/es2015/observe-addtion-of-descendant-nodes.js +0 -14
- package/lib/es2015/observe-addtion-of-descendant-nodes.js.map +0 -1
- package/lib/es2015/observe-removal-of-descendant-nodes.js +0 -14
- package/lib/es2015/observe-removal-of-descendant-nodes.js.map +0 -1
- package/lib/es2015/observe-state-changes.js +0 -48
- package/lib/es2015/observe-state-changes.js.map +0 -1
- package/lib/es2015/observe-url-changes.d.ts +0 -2
- package/lib/es2015/observe-url-changes.js +0 -11
- package/lib/es2015/observe-url-changes.js.map +0 -1
- package/lib/es2015/utils/from-mutation-observer.js +0 -13
- package/lib/es2015/utils/from-mutation-observer.js.map +0 -1
- package/lib/es2018/index.d.ts +0 -4
- package/lib/es2018/index.js +0 -21
- package/lib/es2018/index.js.map +0 -1
- package/lib/es2018/observe-addtion-of-descendant-nodes.d.ts +0 -2
- package/lib/es2018/observe-addtion-of-descendant-nodes.js +0 -14
- package/lib/es2018/observe-addtion-of-descendant-nodes.js.map +0 -1
- package/lib/es2018/observe-removal-of-descendant-nodes.d.ts +0 -2
- package/lib/es2018/observe-removal-of-descendant-nodes.js +0 -14
- package/lib/es2018/observe-removal-of-descendant-nodes.js.map +0 -1
- package/lib/es2018/observe-state-changes.d.ts +0 -2
- package/lib/es2018/observe-state-changes.js.map +0 -1
- package/lib/es2018/observe-url-changes.d.ts +0 -2
- package/lib/es2018/observe-url-changes.js +0 -11
- package/lib/es2018/observe-url-changes.js.map +0 -1
- package/lib/es2018/utils/from-mutation-observer.d.ts +0 -2
- package/lib/es2018/utils/from-mutation-observer.js +0 -13
- package/lib/es2018/utils/from-mutation-observer.js.map +0 -1
- /package/lib/{es2015/observe-addtion-of-descendant-nodes.d.ts → observe-addtion-of-descendant-nodes.d.ts} +0 -0
- /package/lib/{es2015/observe-removal-of-descendant-nodes.d.ts → observe-removal-of-descendant-nodes.d.ts} +0 -0
- /package/lib/{es2015/observe-state-changes.d.ts → observe-state-changes.d.ts} +0 -0
- /package/lib/{es2015/utils → utils}/from-mutation-observer.d.ts +0 -0
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
A module for observing things happening.
|
|
3
3
|
|
|
4
4
|
## Install
|
|
5
|
-
|
|
6
5
|
```sh
|
|
7
6
|
npm install --save @blackglory/observe
|
|
8
7
|
# or
|
|
@@ -10,8 +9,22 @@ yarn add @blackglory/observe
|
|
|
10
9
|
```
|
|
11
10
|
|
|
12
11
|
## API
|
|
12
|
+
### observeURLChanges
|
|
13
|
+
```ts
|
|
14
|
+
function observeURLChanges(): Observable<void>
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### observeStateChanges
|
|
18
|
+
```ts
|
|
19
|
+
function observeStateChanges(): Observable<void>
|
|
20
|
+
```
|
|
13
21
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
22
|
+
### observeAdditionOfDescendantNodes
|
|
23
|
+
```ts
|
|
24
|
+
function observeAdditionOfDescendantNodes(node: Node): Observable<Node[]>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### observeRemovalOfDescendantNodes
|
|
28
|
+
```ts
|
|
29
|
+
function observeRemovalOfDescendantNodes(node: Node): Observable<Node[]>
|
|
30
|
+
```
|
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AACxD,cAAc,0CAA0C,CAAA;AACxD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,0BAA0B,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { fromMutationObserver } from "./utils/from-mutation-observer.js";
|
|
2
|
+
import { filter, map } from 'rxjs/operators';
|
|
3
|
+
import * as Iter from 'iterable-operator';
|
|
4
|
+
export function observeAdditionOfDescendantNodes(node) {
|
|
5
|
+
return fromMutationObserver(node, { childList: true, subtree: true }).pipe(map(records => Iter.toArray(Iter.flatten(Iter.map(records, x => x.addedNodes)))), filter(addedNodes => addedNodes.length > 0));
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=observe-addtion-of-descendant-nodes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"observe-addtion-of-descendant-nodes.js","sourceRoot":"","sources":["../src/observe-addtion-of-descendant-nodes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,0CAAwC;AACvE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,KAAK,IAAI,MAAM,mBAAmB,CAAA;AAEzC,MAAM,UAAU,gCAAgC,CAAC,IAAU;IACzD,OAAO,oBAAoB,CACzB,IAAI,EACJ,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CACnC,CAAC,IAAI,CACJ,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CACzB,IAAI,CAAC,OAAO,CACV,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CACrC,CACF,CAAC,EACF,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,CAC5C,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { fromMutationObserver } from "./utils/from-mutation-observer.js";
|
|
2
|
+
import { filter, map } from 'rxjs/operators';
|
|
3
|
+
import * as Iter from 'iterable-operator';
|
|
4
|
+
export function observeRemovalOfDescendantNodes(node) {
|
|
5
|
+
return fromMutationObserver(node, { childList: true, subtree: true }).pipe(map(records => Iter.toArray(Iter.flatten(Iter.map(records, x => x.removedNodes)))), filter(removedNodes => removedNodes.length > 0));
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=observe-removal-of-descendant-nodes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"observe-removal-of-descendant-nodes.js","sourceRoot":"","sources":["../src/observe-removal-of-descendant-nodes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,0CAAwC;AACvE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,KAAK,IAAI,MAAM,mBAAmB,CAAA;AAEzC,MAAM,UAAU,+BAA+B,CAAC,IAAU;IACxD,OAAO,oBAAoB,CACzB,IAAI,EACJ,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CACnC,CAAC,IAAI,CACJ,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CACzB,IAAI,CAAC,OAAO,CACV,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,CACvC,CACF,CAAC,EACF,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,CAChD,CAAA;AACH,CAAC"}
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.observeStateChanges = void 0;
|
|
4
|
-
const rxjs_1 = require("rxjs");
|
|
5
|
-
const operators_1 = require("rxjs/operators");
|
|
1
|
+
import { Observable, fromEvent, merge } from 'rxjs';
|
|
2
|
+
import { map } from 'rxjs/operators';
|
|
6
3
|
const pushStateHooks = new Set();
|
|
7
4
|
const replaceStateHooks = new Set();
|
|
8
5
|
let pushStateHookRegistered = false;
|
|
9
6
|
let replaceStateHookRegistered = false;
|
|
10
|
-
function observeStateChanges() {
|
|
11
|
-
return
|
|
7
|
+
export function observeStateChanges() {
|
|
8
|
+
return merge(observePushState(), observeReplaceState(), fromEvent(window, 'popstate')).pipe(map(_ => undefined));
|
|
12
9
|
}
|
|
13
|
-
exports.observeStateChanges = observeStateChanges;
|
|
14
10
|
function observePushState() {
|
|
15
|
-
return new
|
|
11
|
+
return new Observable(observer => {
|
|
16
12
|
if (!pushStateHookRegistered) {
|
|
17
13
|
registerPushStateHook();
|
|
18
14
|
}
|
|
@@ -21,7 +17,7 @@ function observePushState() {
|
|
|
21
17
|
});
|
|
22
18
|
}
|
|
23
19
|
function observeReplaceState() {
|
|
24
|
-
return new
|
|
20
|
+
return new Observable(observer => {
|
|
25
21
|
if (!replaceStateHookRegistered) {
|
|
26
22
|
registerReplaceStateHook();
|
|
27
23
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"observe-state-changes.js","sourceRoot":"","sources":["../src/observe-state-changes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,SAAS,EAAE,KAAK,EAAE,MAAM,MAAM,CAAA;AAC/D,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AAEpC,MAAM,cAAc,GAAG,IAAI,GAAG,EAAoB,CAAA;AAClD,MAAM,iBAAiB,GAAG,IAAI,GAAG,EAAoB,CAAA;AACrD,IAAI,uBAAuB,GAAG,KAAK,CAAA;AACnC,IAAI,0BAA0B,GAAG,KAAK,CAAA;AAEtC,MAAM,UAAU,mBAAmB;IACjC,OAAO,KAAK,CACV,gBAAgB,EAAE,EAClB,mBAAmB,EAAE,EACrB,SAAS,CAAC,MAAM,EAAE,UAAU,CAAC,CAC9B,CAAC,IAAI,CACJ,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CACpB,CAAA;AACH,CAAC;AAED,SAAS,gBAAgB;IACvB,OAAO,IAAI,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC/B,IAAI,CAAC,uBAAuB,EAAE;YAC5B,qBAAqB,EAAE,CAAA;SACxB;QACD,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;QAC5B,OAAO,GAAG,EAAE,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;IAC9C,CAAC,CAAC,CAAA;AACJ,CAAC;AAED,SAAS,mBAAmB;IAC1B,OAAO,IAAI,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC/B,IAAI,CAAC,0BAA0B,EAAE;YAC/B,wBAAwB,EAAE,CAAA;SAC3B;QACD,iBAAiB,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;QAC/B,OAAO,GAAG,EAAE,CAAC,iBAAiB,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;IACjD,CAAC,CAAC,CAAA;AACJ,CAAC;AAED,SAAS,qBAAqB;IAC5B,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAA;IACnC,OAAO,CAAC,SAAS,GAAG,UAAU,GAAG,IAAI;QACnC,OAAO,CAAC,KAAK,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QACpC,cAAc,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAA;IACrD,CAAC,CAAA;IACD,uBAAuB,GAAG,IAAI,CAAA;AAChC,CAAC;AAED,SAAS,wBAAwB;IAC/B,MAAM,YAAY,GAAG,OAAO,CAAC,YAAY,CAAA;IACzC,OAAO,CAAC,YAAY,GAAG,UAAU,GAAG,IAAI;QACtC,OAAO,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QACvC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAA;IACxD,CAAC,CAAA;IACD,0BAA0B,GAAG,IAAI,CAAA;AACnC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { animationFrames } from 'rxjs';
|
|
2
|
+
import { filter, tap, map } from 'rxjs/operators';
|
|
3
|
+
export function observeURLChanges() {
|
|
4
|
+
let url = document.URL;
|
|
5
|
+
return animationFrames().pipe(filter(() => url !== document.URL), tap(() => url = document.URL), map(() => undefined));
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=observe-url-changes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"observe-url-changes.js","sourceRoot":"","sources":["../src/observe-url-changes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,eAAe,EAAE,MAAM,MAAM,CAAA;AAClD,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AAEjD,MAAM,UAAU,iBAAiB;IAC/B,IAAI,GAAG,GAAG,QAAQ,CAAC,GAAG,CAAA;IACtB,OAAO,eAAe,EAAE,CAAC,IAAI,CAC3B,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,KAAK,QAAQ,CAAC,GAAG,CAAC,EAClC,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,GAAG,QAAQ,CAAC,GAAG,CAAC,EAC7B,GAAG,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CACrB,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
export function fromMutationObserver(...args) {
|
|
3
|
+
return new Observable(subscriber => {
|
|
4
|
+
const observer = new MutationObserver(mutationList => subscriber.next(mutationList));
|
|
5
|
+
observer.observe(...args);
|
|
6
|
+
return () => observer.disconnect();
|
|
7
|
+
});
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=from-mutation-observer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"from-mutation-observer.js","sourceRoot":"","sources":["../../src/utils/from-mutation-observer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,MAAM,UAAU,oBAAoB,CAClC,GAAG,IAA6C;IAEhD,OAAO,IAAI,UAAU,CAAC,UAAU,CAAC,EAAE;QACjC,MAAM,QAAQ,GAAG,IAAI,gBAAgB,CACnC,YAAY,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,CAC9C,CAAA;QACD,QAAQ,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAA;QACzB,OAAO,GAAG,EAAE,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAA;IACpC,CAAC,CAAC,CAAA;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,73 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blackglory/observe",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A module for observing things happening.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"DOM"
|
|
7
7
|
],
|
|
8
8
|
"files": [
|
|
9
|
-
"lib"
|
|
10
|
-
"dist"
|
|
9
|
+
"lib"
|
|
11
10
|
],
|
|
12
|
-
"
|
|
13
|
-
"
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "lib/index.js",
|
|
13
|
+
"types": "lib/index.d.ts",
|
|
14
14
|
"sideEffects": false,
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=16"
|
|
17
|
+
},
|
|
15
18
|
"repository": "git@github.com:BlackGlory/observe.git",
|
|
16
19
|
"author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
|
|
17
20
|
"license": "MIT",
|
|
18
21
|
"scripts": {
|
|
22
|
+
"prepare": "ts-patch install -s",
|
|
19
23
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src __tests__",
|
|
20
|
-
"test": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"clean:build": "rimraf lib",
|
|
25
|
-
"clean:bundle": "rimraf dist",
|
|
26
|
-
"build": "run-p build:*",
|
|
27
|
-
"build:es2015": "run-s build:es2015:*",
|
|
28
|
-
"build:es2015:compile": "tsc --project tsconfig.build.json --module commonjs --target es2015 --outDir lib/es2015",
|
|
29
|
-
"build:es2015:patch": "tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2015",
|
|
30
|
-
"build:es2018": "run-s build:es2018:*",
|
|
31
|
-
"build:es2018:compile": "tsc --project tsconfig.build.json --module commonjs --target es2018 --outDir lib/es2018",
|
|
32
|
-
"build:es2018:patch": "tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2018",
|
|
33
|
-
"bundle": "rollup --config rollup.config.js",
|
|
24
|
+
"test": "vitest --run",
|
|
25
|
+
"prepublishOnly": "run-s prepare clean build",
|
|
26
|
+
"clean": "rimraf lib",
|
|
27
|
+
"build": "tsc --project tsconfig.build.json",
|
|
34
28
|
"release": "standard-version"
|
|
35
29
|
},
|
|
36
30
|
"husky": {
|
|
37
31
|
"hooks": {
|
|
38
|
-
"pre-commit": "run-s lint build test",
|
|
32
|
+
"pre-commit": "run-s prepare lint build test",
|
|
39
33
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
40
34
|
}
|
|
41
35
|
},
|
|
42
36
|
"devDependencies": {
|
|
43
|
-
"@blackglory/
|
|
44
|
-
"@
|
|
45
|
-
"@commitlint/
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"@rollup/plugin-replace": "^4.0.0",
|
|
51
|
-
"@rollup/plugin-typescript": "^8.3.4",
|
|
52
|
-
"@types/jest": "^27.4.0",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
54
|
-
"@typescript-eslint/parser": "^5.32.0",
|
|
55
|
-
"eslint": "^8.21.0",
|
|
37
|
+
"@blackglory/wait-for": "^0.7.1",
|
|
38
|
+
"@commitlint/cli": "^17.4.4",
|
|
39
|
+
"@commitlint/config-conventional": "^17.4.4",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
41
|
+
"@typescript-eslint/parser": "^5.55.0",
|
|
42
|
+
"cross-env": "^7.0.3",
|
|
43
|
+
"eslint": "^8.36.0",
|
|
56
44
|
"husky": "^4.3.6",
|
|
57
|
-
"
|
|
45
|
+
"jsdom": "^21.1.1",
|
|
58
46
|
"npm-run-all": "^4.1.5",
|
|
59
47
|
"rimraf": "^3.0.2",
|
|
60
|
-
"rollup": "^2.77.2",
|
|
61
|
-
"rollup-plugin-analyzer": "^4.0.0",
|
|
62
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
63
48
|
"standard-version": "^9.5.0",
|
|
64
|
-
"ts-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"typescript": "^4.
|
|
49
|
+
"ts-patch": "^2.1.0",
|
|
50
|
+
"tslib": "^2.5.0",
|
|
51
|
+
"typescript": "4.8",
|
|
52
|
+
"typescript-transform-paths": "^3.4.6",
|
|
53
|
+
"vite": "^4.2.0",
|
|
54
|
+
"vite-tsconfig-paths": "^4.0.7",
|
|
55
|
+
"vitest": "^0.29.3"
|
|
68
56
|
},
|
|
69
57
|
"dependencies": {
|
|
70
|
-
"iterable-operator": "^
|
|
71
|
-
"rxjs": "^7.
|
|
58
|
+
"iterable-operator": "^4.0.3",
|
|
59
|
+
"rxjs": "^7.8.0"
|
|
72
60
|
}
|
|
73
61
|
}
|