Skip to content

Commit 51c7ee3

Browse files
committed
Use changesets, add to scripts for tab completion
Fixes #115
1 parent e376c29 commit 51c7ee3

8 files changed

Lines changed: 1563 additions & 1681 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/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.0/schema.json",
3+
"changelog": ["@changesets/changelog-github", { "repo": "bitauth/libauth" }],
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.changeset/kind-shoes-switch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@bitauth/libauth': patch
3+
---
4+
5+
Upgrade `@playwright/test` to close [#115](https://github.com/bitauth/libauth/pull/115)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@bitauth/libauth': minor
3+
---
4+
5+
Use `@changesets/cli`, remove `standard-version`

.pnp.cjs

Lines changed: 796 additions & 859 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn

Submodule .yarn updated 152 files

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"BTC"
3434
],
3535
"scripts": {
36+
"changeset": "changeset",
3637
"compile:secp256k1": "docker build -f wasm/docker/secp256k1.Dockerfile . -t libauth-secp256k1 && docker run -it --mount type=bind,src=$(pwd)/src/lib,dst=/libauth/out,consistency=delegated libauth-secp256k1",
3738
"compile:hashes": "docker build -f wasm/docker/hashes.Dockerfile . -t libauth-hashes && docker run -it --mount type=bind,src=$(pwd)/src/lib,dst=/libauth/out,consistency=delegated libauth-hashes",
3839
"build": "yarn build:wasm && yarn build:tsc",
@@ -86,8 +87,6 @@
8687
"doc:extract": "mkdir -p build/api && api-extractor run --local --typescript-compiler-folder node_modules/typescript",
8788
"doc:generate": "api-documenter markdown -i temp -o build/api/markdown",
8889
"doc:check-api": "api-extractor run --typescript-compiler-folder node_modules/typescript",
89-
"version": "standard-version",
90-
"version:alpha": "standard-version --prerelease alpha",
9190
"reset": "git clean -dfx && git reset --hard && yarn",
9291
"prepare-release": "yarn reset && yarn test && yarn cov:check && yarn run version",
9392
"prepare-release:alpha": "yarn reset && yarn test && yarn cov:check && yarn run version:alpha"
@@ -97,10 +96,11 @@
9796
},
9897
"devDependencies": {
9998
"@ava/typescript": "^4.1.0",
99+
"@changesets/cli": "^2.27.1",
100100
"@fast-check/ava": "^1.2.1",
101101
"@microsoft/api-documenter": "^7.23.16",
102102
"@microsoft/api-extractor": "^7.39.1",
103-
"@playwright/test": "^1.40.1",
103+
"@playwright/test": "^1.41.2",
104104
"@rollup/plugin-alias": "^5.1.0",
105105
"@rollup/plugin-commonjs": "^25.0.7",
106106
"@rollup/plugin-node-resolve": "^15.2.3",
@@ -136,7 +136,6 @@
136136
"rollup": "^4.9.4",
137137
"secp256k1": "^5.0.0",
138138
"source-map-support": "^0.5.21",
139-
"standard-version": "^9.5.0",
140139
"ts-json-schema-generator": "^1.5.0",
141140
"typedoc": "^0.25.7",
142141
"typescript": "^5.3.3"

0 commit comments

Comments
 (0)