You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* configure new SDK language ([776453f](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/776453fcb11bf422ce72e1c63cb01dc82eda0bd2))
24
+
***internal:** codegen related update ([ee4fec3](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/ee4fec36024c123531218c3d47bed4270499f8a6))
25
+
***internal:** fix incremental formatting in some cases ([655eb1b](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/655eb1b2e9d21a31cd180975c640e6d3e10ea7f4))
***internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([8a97508](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/8a9750853f75069c95085b5e3fc7fae9676f78a8))
29
+
***internal:** use npm pack for build uploads ([7542ea1](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/7542ea13018e82049edbedb40a54900284e1202a))
30
+
***jsdoc:** fix [@link](https://github.com/link) annotations to refer only to parts of the package‘s public interface ([6106f8a](https://github.com/onlyfansapi/onlyfansapi-typescript-sdk/commit/6106f8ac50a22193c005a878cf1d88cafb04a233))
Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests.
69
-
70
68
```sh
71
-
$ npx prism mock path/to/your/openapi.yml
72
-
```
73
-
74
-
```sh
75
-
$ yarn run test
69
+
$ pnpm run test
76
70
```
77
71
78
72
## Linting and formatting
@@ -83,11 +77,25 @@ This repository uses [prettier](https://www.npmjs.com/package/prettier) and
83
77
To lint:
84
78
85
79
```sh
86
-
$ yarn lint
80
+
$ pnpm lint
87
81
```
88
82
89
83
To format and fix all lint issues automatically:
90
84
91
85
```sh
92
-
$ yarn fix
86
+
$ pnpm fix
93
87
```
88
+
89
+
## Publishing and releases
90
+
91
+
Changes made to this repository via the automated release PR pipeline should publish to npm automatically. If
92
+
the changes aren't made through the automated pipeline, you may want to make releases manually.
93
+
94
+
### Publish with a GitHub workflow
95
+
96
+
You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/onlyfansapi/onlyfansapi-typescript-sdk/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.
97
+
98
+
### Publish manually
99
+
100
+
If you need to manually release a package, you can run the `bin/publish-npm` script with an `NPM_TOKEN` set on
0 commit comments