@reactive-cache/core 3.2.0 → 3.2.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { BehaviorSubject, defer, exhaustMap, filter, from, Observable, switchMap, tap } from "rxjs";
2
- import { NamedBehaviorSubject } from "./named-behavior-subject";
2
+ import { NamedBehaviorSubject } from "./named-behavior-subject.js";
3
3
  export const __REACTIVE_CACHE_WINDOW_PROP_NAME__ = '__REACTIVE_CACHE_DATA__';
4
4
  export const __REACTIVE_CACHES_LIST__ = [];
5
5
  export const __REACTIVE_CACHES_ON_UPDATE_MAP__ = new WeakMap();
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@reactive-cache/core",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "npx tsc && tsx watch src/test.ts && echo 'all tests are complete!'",
7
7
  "manual-test": "npx tsc && tsx watch src/manualTest.ts",
8
- "prepare": "npx tsc && rm -f ./dist/test.js"
8
+ "prepare": "npx tsc && rm -f ./dist/test.js",
9
+ "serve": "npx serve ."
9
10
  },
10
11
  "devDependencies": {
11
12
  "@reactive-cache/core": "^0.1.4",