diff --git a/packages/contracts/contracts/package.json b/packages/contracts/contracts/package.json index 33efd30..ca52c03 100644 --- a/packages/contracts/contracts/package.json +++ b/packages/contracts/contracts/package.json @@ -1,7 +1,7 @@ { "name": "@excubiae/contracts", "description": "Excubiae contracts.", - "version": "0.0.0", + "version": "0.1.0", "license": "MIT", "files": [ "*.sol", diff --git a/scripts/version.ts b/scripts/version.ts index cd827a9..12ee259 100755 --- a/scripts/version.ts +++ b/scripts/version.ts @@ -10,7 +10,7 @@ async function main() { // Apply the versions execSync("yarn version apply --all", { stdio: "inherit" }) - await import("./remove-stable-version-field.js") + await import("./remove-stable-version-field") execSync("yarn format:write") execSync(`NO_HOOK=1 git commit -am 'chore: v${version}'`) diff --git a/tsconfig.json b/tsconfig.json index bcb9f95..26e3040 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,8 +3,8 @@ "baseUrl": ".", "strict": true, "target": "ES2020", - "module": "NodeNext", - "moduleResolution": "NodeNext", + "module": "ESNext", + "moduleResolution": "bundler", "esModuleInterop": true, "preserveConstEnums": true, "resolveJsonModule": true,