Skip to content

Commit

Permalink
chore: cleanup .releaserc and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Mar 12, 2024
1 parent 4b283d6 commit caefb80
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
14 changes: 8 additions & 6 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/ar-io/ar-io-sdk",
Expand All @@ -16,12 +12,18 @@
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/npm",
{
"access": "public"
}
],
[
"@semantic-release/github",
{
"assets": [
"dist/**"
"lib/**",
"bundles/**"
]
}
],
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/ar-io/ar-io-sdk.git"
"url": "git+https://github.com/ar-io/ar-io-sdk.git"
},
"main": "./lib/cjs/node/index.js",
"module": "./lib/esm/node/index.js",
"types": "./lib/types/node/index.d.ts",
"browser": "./bundles/web.bundle.min.js",
"type": "module",
"engines": {
"node": ">=18"
},
"license": "AGPL-3.0-or-later",
"files": [
"lib",
"bundles",
Expand Down Expand Up @@ -41,10 +45,7 @@
"browser": "./bundles/web.bundle.min.js"
}
},
"engines": {
"node": ">=18"
},
"license": "AGPL-3.0-or-later",

"scripts": {
"build:web": "node bundle.mjs",
"build:esm": "yarn tsc -p tsconfig.json",
Expand Down

0 comments on commit caefb80

Please sign in to comment.