@nexushub/client 0.4.1 → 0.4.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.
- package/dist/chunk-FMMFQP5O.cjs +2643 -0
- package/dist/chunk-G4SHBWAQ.js +2643 -0
- package/dist/content/local-cache-client.cjs +3 -1
- package/dist/content/local-cache-client.js +2 -0
- package/dist/content/local-cache-server.cjs +3 -1
- package/dist/content/local-cache-server.js +2 -0
- package/dist/index.cjs +3 -2568
- package/dist/index.d.cts +4 -359
- package/dist/index.d.ts +4 -359
- package/dist/index.js +23 -2588
- package/dist/react-C795ypnM.d.cts +386 -0
- package/dist/react-C795ypnM.d.ts +386 -0
- package/dist/react.cjs +17 -0
- package/dist/react.d.cts +3 -0
- package/dist/react.d.ts +3 -0
- package/dist/react.js +17 -0
- package/package.json +16 -2
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true})
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});"use client";
|
|
2
|
+
|
|
3
|
+
// src/content/local-cache-client.ts
|
|
2
4
|
var LocalCache = class {
|
|
3
5
|
constructor(customPath) {
|
|
4
6
|
// Maintain private properties for type parity with the Server version
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }"use client";
|
|
2
|
+
|
|
3
|
+
// src/content/local-cache-server.ts
|
|
2
4
|
var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
|
|
3
5
|
var _path = require('path'); var _path2 = _interopRequireDefault(_path);
|
|
4
6
|
var LocalCache = class {
|