@real-router/memory-plugin 0.1.2 → 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.
@@ -17,7 +17,7 @@ declare module "@real-router/core" {
17
17
  canGoBack: () => boolean;
18
18
  canGoForward: () => boolean;
19
19
  }
20
- }
20
+ } //# sourceMappingURL=index.d.ts.map
21
21
  //#endregion
22
22
  export { type MemoryPluginOptions, memoryPluginFactory };
23
23
  //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/types.ts","../../src/factory.ts","../../src/index.ts"],"mappings":";;;UAEiB,mBAAA;EACf,gBAAA;AAAA;;;iBCIc,mBAAA,CACd,OAAA,GAAS,mBAAA,GACR,aAAA;;;;YCJS,MAAA;IACR,IAAA;IACA,OAAA;IACA,EAAA,GAAK,KAAA;IACL,SAAA;IACA,YAAA;EAAA;AAAA"}
@@ -17,7 +17,7 @@ declare module "@real-router/core" {
17
17
  canGoBack: () => boolean;
18
18
  canGoForward: () => boolean;
19
19
  }
20
- }
20
+ } //# sourceMappingURL=index.d.ts.map
21
21
  //#endregion
22
22
  export { type MemoryPluginOptions, memoryPluginFactory };
23
23
  //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../../src/types.ts","../../src/factory.ts","../../src/index.ts"],"mappings":";;;UAEiB,mBAAA;EACf,gBAAA;AAAA;;;iBCIc,mBAAA,CACd,OAAA,GAAS,mBAAA,GACR,aAAA;;;;YCJS,MAAA;IACR,IAAA;IACA,OAAA;IACA,EAAA,GAAK,KAAA;IACL,SAAA;IACA,YAAA;EAAA;AAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@real-router/memory-plugin",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "type": "commonjs",
5
5
  "description": "In-memory history engine for Real-Router — non-browser environments and benchmarks",
6
6
  "main": "./dist/cjs/index.js",
@@ -8,6 +8,7 @@
8
8
  "types": "./dist/esm/index.d.mts",
9
9
  "exports": {
10
10
  ".": {
11
+ "@real-router/internal-source": "./src/index.ts",
11
12
  "types": {
12
13
  "import": "./dist/esm/index.d.mts",
13
14
  "require": "./dist/cjs/index.d.ts"
@@ -44,7 +45,7 @@
44
45
  "homepage": "https://github.com/greydragon888/real-router",
45
46
  "sideEffects": false,
46
47
  "dependencies": {
47
- "@real-router/core": "^0.45.2"
48
+ "@real-router/core": "^0.47.0"
48
49
  },
49
50
  "scripts": {
50
51
  "test": "vitest",
@@ -53,7 +54,6 @@
53
54
  "type-check": "tsc --noEmit",
54
55
  "lint": "eslint --cache --ext .ts src/ tests/ --fix --max-warnings 0",
55
56
  "lint:package": "publint",
56
- "lint:types": "attw --pack .",
57
- "build:dist-only": "tsdown --config-loader unrun"
57
+ "lint:types": "attw --pack ."
58
58
  }
59
59
  }