Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
xstelea authored Sep 24, 2023
2 parents c4a8433 + 7d9d686 commit 209aa38
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ You may wish to consider using this with [dApp toolkit](https://github.com/radix
- [Build transaction manifest](#build-transaction-manifest)
- [sendTransaction](#sendtransaction)
- [Errors](#errors)
- [License](#license)

# Installation

Expand Down Expand Up @@ -670,3 +671,7 @@ const transactionIntentHash = result.value.transactionIntentHash
| submittedTransactionWasDuplicate | App submitted a transaction and got informed by Gateway it was duplicated | "TXID: <TXID_STRING>" |
| submittedTransactionHasFailedTransactionStatus | App submitted a transaction to Gateway and polled transaction status telling app it was a failed transaction | "TXID: <TXID_STRING>" |
| submittedTransactionHasRejectedTransactionStatus | App submitted a transaction to Gateway and polled transaction status telling app it was a rejected transaction | "TXID: <TXID_STRING>" |

# License

The Wallet SDK code is released under [Apache 2.0 license](LICENSE). Binaries are licensed under the [Radix Software EULA](http://www.radixdlt.com/terms/genericEULA)
24 changes: 23 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
module.exports = { extends: ['@commitlint/config-conventional'] }
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': () => [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'major',
],
],
},
}
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@
"files": [
"dist"
],
"main": "./dist/wallet-sdk.umd.js",
"module": "./dist/wallet-sdk.mjs",
"main": "./dist/wallet-sdk.mjs",
"exports": {
".": {
"import": "./dist/wallet-sdk.mjs",
"require": "./dist/wallet-sdk.umd.js"
"import": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.mjs"
},
"require": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.umd.js"
}
}
},
"types": "./dist/wallet-sdk.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ module.exports = {
{
preset: 'conventionalcommits',
releaseRules: [
{
type: 'major',
release: 'major',
},
{
type: 'refactor',
release: 'patch',
Expand Down Expand Up @@ -74,6 +78,10 @@ module.exports = {
},
presetConfig: {
types: [
{
type: 'major',
release: 'major',
},
{
type: 'feat',
section: ':sparkles: Features',
Expand Down

0 comments on commit 209aa38

Please sign in to comment.