Restructure files

This commit is contained in:
aet
2021-11-11 23:56:06 -05:00
parent b4b21561ed
commit bdd46a530c
29 changed files with 271 additions and 179 deletions

View File

@ -2,8 +2,8 @@ import { resolve } from "path";
import { describe, it, beforeEach } from "mocha";
import { expect } from "chai";
import type { Vault } from "../packages/opvault.js/index";
import { OnePassword } from "../packages/opvault.js/index";
import type { Vault } from "../packages/opvault.js/src/index";
import { OnePassword } from "../packages/opvault.js/src/index";
describe("OnePassword", () => {
const freddy = resolve(__dirname, "../freddy-2013-12-04.opvault");

View File

@ -1,7 +1,7 @@
import { describe, it } from "mocha";
import { expect } from "chai";
import { WeakValueMap } from "../packages/opvault.js/weakMap";
import { WeakValueMap } from "../packages/opvault.js/src/weakMap";
declare const gc: () => void;