diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 000000000..e5b6d8d6a --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,8 @@ +# Changesets + +Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works +with multi-package repos, or single-package repos to help you version and publish your code. You can +find the full documentation for it [in our repository](https://github.com/changesets/changesets) + +We have a quick list of common questions to get you started engaging with this project in +[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 000000000..b8e951163 --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", + "changelog": "@changesets/cli/changelog", + "commit": false, + "fixed": [], + "linked": [], + "access": "restricted", + "baseBranch": "main", + "updateInternalDependencies": "patch", + "___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { + "onlyUpdatePeerDependentsWhenOutOfRange": true + }, + "ignore": [] +} diff --git a/bun.lockb b/bun.lockb index c5ce5f5a3..a6e3179d3 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index aec245cf6..34f813809 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,22 @@ { - "workspaces": ["packages/*"], + "workspaces": [ + "packages/*" + ], "type": "module", "name": "sdk", "author": "Biconomy", "version": "1.0.0", "description": "sdk for account abstraction, smart accounts, erc-4337 and erc-7579.", - "keywords": ["erc-7579", "modular smart account", "account abstraction", "biconomy", "sdk"], + "keywords": [ + "erc-7579", + "modular smart account", + "account abstraction", + "biconomy", + "sdk" + ], "sideEffects": false, - "private": true, "license": "MIT", + "scope": "@biconomy", "scripts": { "format": "biome format . --write", "lint": "biome check .", @@ -22,10 +30,14 @@ "test:ci": "CI=true vitest -c ./tests/vitest.config.ts --coverage", "size": "size-limit", "docs": "typedoc --tsconfig ./tsconfig/tsconfig.esm.json", - "docs:deploy": "bun run docs && gh-pages -d docs" + "docs:deploy": "bun run docs && gh-pages -d docs", + "changeset": "changeset", + "changeset:release": "bun run build && changeset publish", + "changeset:version": "changeset version && bun install --lockfile-only" }, "devDependencies": { "@biomejs/biome": "^1.5.3", + "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.0.3", "@commitlint/config-conventional": "^19.0.3", "@size-limit/esbuild-why": "^9.0.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md new file mode 100644 index 000000000..c6dfee8aa --- /dev/null +++ b/packages/core/CHANGELOG.md @@ -0,0 +1,7 @@ +# @biconomy/core + +## 0.0.1 + +### Patch Changes + +- Added boilerplate diff --git a/packages/core/package.json b/packages/core/package.json index bc0fd7234..39ffcdc41 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/core", - "version": "1.0.0", + "version": "0.0.1", "author": "Biconomy", "homepage": "https://biconomy.io", "repository": "github:bcnmy/sdk", @@ -31,4 +31,4 @@ "peerDependencies": { "viem": "^2.0.0" } -} +} \ No newline at end of file