Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {}
},
"postCreateCommand": "yarn install",
"postCreateCommand": "pnpm install",
"customizations": {
"vscode": {
"extensions": ["esbenp.prettier-vscode"]
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
with:
node-version: '22'

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: '10.27.0'

- name: Bootstrap
run: ./scripts/bootstrap

Expand All @@ -48,6 +53,11 @@ jobs:
with:
node-version: '22'

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: '10.27.0'

- name: Bootstrap
run: ./scripts/bootstrap

Expand Down Expand Up @@ -90,6 +100,11 @@ jobs:
with:
node-version: '22'

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: '10.27.0'

- name: Bootstrap
run: ./scripts/bootstrap

Expand Down
50 changes: 0 additions & 50 deletions .github/workflows/publish-npm.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/release-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ jobs:
- name: Check release environment
run: |
bash ./bin/check-release-environment
env:
NPM_TOKEN: ${{ secrets.CAS_PARSER_NPM_TOKEN || secrets.NPM_TOKEN }}

2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.5.1"
".": "1.6.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 4
configured_endpoints: 17
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser%2Fcas-parser-56b0f699c5437d9e5326626d35dfc972c17d01f12cb416c7f4854c8ea6d0e95e.yml
openapi_spec_hash: 158f405c1880706266d83e6ff16b9d2f
config_hash: 24b53b40c97044745e5456fbc3dbb5cc
config_hash: 1af2e938c93ea4ec25fc633469072c43
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.6.0 (2026-02-14)

Full Changelog: [v1.5.1...v1.6.0](https://github.com/CASParser/cas-parser-node/compare/v1.5.1...v1.6.0)

### Features

* **api:** manual updates ([c483f9f](https://github.com/CASParser/cas-parser-node/commit/c483f9fa85bda72c8cd35cb36b84b7b618b7ecc9))


### Chores

* configure new SDK language ([c5b4f8a](https://github.com/CASParser/cas-parser-node/commit/c5b4f8a53aa3d56d53802f1dcca10188b614bc47))
* update SDK settings ([165d960](https://github.com/CASParser/cas-parser-node/commit/165d960d998ef169f8cdbd05377ee5c386202d19))

## 1.5.1 (2026-02-14)

Full Changelog: [v1.5.0...v1.5.1](https://github.com/CASParser/cas-parser-node/compare/v1.5.0...v1.5.1)
Expand Down
32 changes: 9 additions & 23 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## Setting up the environment

This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install).
This repository uses [`pnpm`](https://pnpm.io/).
Other package managers may work but are not officially supported for development.

To set up the repository, run:

```sh
$ yarn
$ yarn build
$ pnpm install
$ pnpm build
```

This will install all the required dependencies and build output files to `dist/`.
Expand All @@ -32,7 +32,7 @@ All files in the `examples/` directory are not modified by the generator and can
```sh
$ chmod +x examples/<your-example>.ts
# run the example against your api
$ yarn tsn -T examples/<your-example>.ts
$ pnpm tsn -T examples/<your-example>.ts
```

## Using the repository from source
Expand All @@ -55,12 +55,12 @@ $ cd cas-parser-node
# With yarn
$ yarn link
$ cd ../my-package
$ yarn link cas-parser-node
$ yarn link cas-parser

# With pnpm
$ pnpm link --global
$ cd ../my-package
$ pnpm link -—global cas-parser-node
$ pnpm link -—global cas-parser
```

## Running tests
Expand All @@ -72,7 +72,7 @@ $ npx prism mock path/to/your/openapi.yml
```

```sh
$ yarn run test
$ pnpm run test
```

## Linting and formatting
Expand All @@ -83,25 +83,11 @@ This repository uses [prettier](https://www.npmjs.com/package/prettier) and
To lint:

```sh
$ yarn lint
$ pnpm lint
```

To format and fix all lint issues automatically:

```sh
$ yarn fix
$ pnpm fix
```

## Publishing and releases

Changes made to this repository via the automated release PR pipeline should publish to npm automatically. If
the changes aren't made through the automated pipeline, you may want to make releases manually.

### Publish with a GitHub workflow

You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/CASParser/cas-parser-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.

### Publish manually

If you need to manually release a package, you can run the `bin/publish-npm` script with an `NPM_TOKEN` set on
the environment.
Loading