Skip to content

Commit 68a8cb8

Browse files
committed
cleanup versions
1 parent 216a927 commit 68a8cb8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ exports.__esModule = true;
4242
exports.SolidNodeClient = void 0;
4343
var solid_auth_fetcher_1 = require("solid-auth-fetcher");
4444
var node_fetch_1 = __importDefault(require("node-fetch"));
45-
var rest_js_1 = __importDefault(require("../../solid-rest/src/rest.js"));
45+
var solid_rest_1 = __importDefault(require("solid-rest"));
4646
var SolidNodeClient = /** @class */ (function () {
4747
function SolidNodeClient(options) {
4848
if (options === void 0) { options = {}; }
4949
options = options || {};
50-
this.rest = options.rest || new rest_js_1["default"](options);
50+
this.rest = options.rest || new solid_rest_1["default"](options);
5151
this.session = options.session || new NodeNoAuthSession({ rest: this.rest });
5252
this.debug = false;
5353
return this;

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getSession, getNodeSolidServerCookie, getAuthFetcher }
22
from "solid-auth-fetcher";
33
import fetch from "node-fetch";
4-
import SolidRest from "../../solid-rest/src/rest.js";
4+
import SolidRest from "solid-rest";
55

66
export class SolidNodeClient {
77
rest?:any;

0 commit comments

Comments
 (0)