Skip to content

Commit 40d3763

Browse files
committed
chore: initial release setup
1 parent 91a8f27 commit 40d3763

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pnpm install
2929

3030
- name: Build docs
31-
run: pnpm docs
31+
run: pnpm run docs
3232

3333
- name: Deploy to GitHub Pages
3434
uses: peaceiris/actions-gh-pages@v3

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install -g pnpm
1919
- run: pnpm install
2020
- run: pnpm run build
21+
- name: Set version to 0.0.1
22+
run: npm version 0.0.1 --no-git-tag-version
2123
- run: npx semantic-release --no-ci
2224
env:
2325
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.releaserc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"branches": ["main"],
33
"plugins": [
4-
"@semantic-release/commit-analyzer",
4+
["@semantic-release/commit-analyzer", {
5+
"preset": "angular",
6+
"releaseRules": [
7+
{"type": "*", "release": "patch"}
8+
]
9+
}],
510
"@semantic-release/release-notes-generator",
611
"@semantic-release/changelog",
712
"@semantic-release/npm",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "uni-dev-kit",
2+
"name": "uniswap-dev-kit",
33
"version": "0.0.1",
44
"description": "A modern TypeScript library for integrating Uniswap into your dapp.",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)