Skip to content

Commit

Permalink
chore: add changeset (#12)
Browse files Browse the repository at this point in the history
* chore: add changeset
  • Loading branch information
joepegler authored Mar 6, 2024
1 parent ce5473b commit 14d39d7
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -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)
14 changes: 14 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
},
"ignore": []
}
Binary file modified bun.lockb
Binary file not shown.
20 changes: 16 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 .",
Expand All @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @biconomy/core

## 0.0.1

### Patch Changes

- Added boilerplate
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -31,4 +31,4 @@
"peerDependencies": {
"viem": "^2.0.0"
}
}
}

0 comments on commit 14d39d7

Please sign in to comment.