Skip to content

Commit 4865648

Browse files
authored
Merge branch 'main' into 209-make-currencies-and-payment-chain-input-parameter-_override_-the-default-currency-and-payment-chains-list-instead-of-append
2 parents 800734e + f6c3f8c commit 4865648

File tree

26 files changed

+6197
-11711
lines changed

26 files changed

+6197
-11711
lines changed

.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/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.4/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types: [opened, reopened, synchronize, ready_for_review]
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '18'
23+
cache: 'npm'
24+
25+
- name: Install dependencies
26+
run: npm ci
27+
28+
- name: Build
29+
run: npm run build

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,21 @@ Run a command in the context of specific workspaces.
7373
npm run test --workspace=add-stakeholder --workspace=other
7474
```
7575

76+
## Release
77+
78+
Run changeset command to create a changeset file.
79+
80+
```bash
81+
npx changeset
82+
```
83+
84+
Run changeset version command to bump the version of the packages that have changesets.
85+
86+
```bash
87+
npx changeset version
88+
```
89+
90+
Push the changes to the remote repository. Once the changes are merged, the new versions will be deployed automatically.
91+
7692
For more info about workinng with NPM workspaces see:
7793
https://docs.npmjs.com/cli/v8/using-npm/workspaces

0 commit comments

Comments
 (0)