Skip to content

Commit 7ae7e5d

Browse files
authored
changesets (#87)
1 parent f7c36cf commit 7ae7e5d

21 files changed

Lines changed: 70 additions & 19 deletions

File tree

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)

.changeset/config.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@1.4.0/schema.json",
3+
"changelog": [
4+
"@changesets/cli/changelog",
5+
{ "repo": "arcadeum/arcadeum.js" }
6+
],
7+
"commit": false,
8+
"linked": [
9+
[
10+
"@0xsequence/*"
11+
]
12+
],
13+
"access": "public",
14+
"baseBranch": "master",
15+
"ignore": []
16+
}

.changeset/tender-rules-vanish.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
'0xsequence': patch
3+
'@0xsequence/abi': patch
4+
'@0xsequence/api': patch
5+
'@0xsequence/auth': patch
6+
'@0xsequence/bridge': patch
7+
'@0xsequence/chaind': patch
8+
'@0xsequence/config': patch
9+
'@0xsequence/deployer': patch
10+
'@0xsequence/guard': patch
11+
'@0xsequence/multicall': patch
12+
'@0xsequence/network': patch
13+
'@0xsequence/provider': patch
14+
'@0xsequence/relayer': patch
15+
'@0xsequence/transactions': patch
16+
'@0xsequence/utils': patch
17+
'@0xsequence/wallet': patch
18+
---
19+
20+
sequence.js, init release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ package for package versioning across the monorepo, as well as changelogs. See *
6868

6969
1. Run `yarn` to make sure everything is up to date
7070
2. Run `yarn version-packages`
71-
3. Run NPM_CONFIG_OTP=PUTANOTPCODEHERE `yarn release`. If the 2FA code times out while publishing, run the command again
71+
3. Run NPM_CONFIG_OTP=PUT_OTP_CODE_HERE `yarn release`. If the 2FA code timesout while publishing, run the command again
7272
with a new code, only the packages that were not published will be published.
7373

7474

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"build": "yarn typecheck && preconstruct build",
77
"watch": "preconstruct watch",
88
"clean": "rimraf ./node_modules",
9-
"prepublishOnly": "yarn build",
109
"changeset": "changeset",
1110
"version-packages": "changeset version",
1211
"release": "yarn build && changeset publish",
@@ -31,6 +30,7 @@
3130
"@babel/preset-env": "^7.12.1",
3231
"@babel/preset-typescript": "^7.12.1",
3332
"@babel/runtime": "^7.12.5",
33+
"@changesets/changelog-github": "^0.2.8",
3434
"@changesets/cli": "^2.13.0",
3535
"@preconstruct/cli": "^2.0.1",
3636
"@types/chai": "^4.2.11",

packages/abi/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"author": "Horizon Blockchain Games",
99
"license": "Apache-2.0",
1010
"scripts": {
11-
"prepublishOnly": "yarn test && yarn lint",
1211
"test": "echo",
1312
"typecheck": "tsc --noEmit"
1413
},

packages/api/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"author": "Horizon Blockchain Games",
99
"license": "Apache-2.0",
1010
"scripts": {
11-
"prepublishOnly": "yarn test && yarn lint",
1211
"test": "echo",
1312
"typecheck": "tsc --noEmit"
1413
},

packages/auth/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"author": "Horizon Blockchain Games",
99
"license": "Apache-2.0",
1010
"scripts": {
11-
"prepublishOnly": "yarn test && yarn lint",
1211
"test": "echo",
1312
"typecheck": "tsc --noEmit"
1413
},

packages/bridge/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"author": "Horizon Blockchain Games",
99
"license": "Apache-2.0",
1010
"scripts": {
11-
"prepublishOnly": "yarn test && yarn lint",
1211
"test": "yarn test:file tests/**/*.spec.ts",
1312
"test:file": "TS_NODE_PROJECT=../../tsconfig.test.json mocha -r ts-node/register --timeout 30000",
1413
"typecheck": "tsc --noEmit"

packages/chaind/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"author": "Horizon Blockchain Games",
99
"license": "Apache-2.0",
1010
"scripts": {
11-
"prepublishOnly": "yarn test && yarn lint",
1211
"test": "echo",
1312
"typecheck": "tsc --noEmit"
1413
},

0 commit comments

Comments
 (0)