Skip to content

Commit 47099b6

Browse files
chore: rebuild project due to codegen change (#399)
1 parent fb7c1c8 commit 47099b6

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
name: lint
1313
runs-on: ubuntu-latest
14-
if: github.repository == 'muxinc/mux-node-sdk'
14+
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -22,16 +22,13 @@ jobs:
2222
node-version: '18'
2323

2424
- name: Install dependencies
25-
run: |
26-
yarn install
25+
run: yarn install
2726

2827
- name: Check types
29-
run: |
30-
yarn build
28+
run: ./scripts/lint
3129
test:
3230
name: test
3331
runs-on: ubuntu-latest
34-
if: github.repository == 'muxinc/mux-node-sdk'
3532

3633
steps:
3734
- uses: actions/checkout@v4

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "8.5.2"
2+
".": "8.5.3"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 95
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mux/mux-node",
3-
"version": "8.5.2",
3+
"version": "8.5.3",
44
"description": "The official TypeScript library for the Mux API",
55
"author": "Mux <[email protected]>",
66
"types": "dist/index.d.ts",

scripts/format

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
cd "$(dirname "$0")/.."
6+
7+
echo "==> Running eslint --fix"
8+
./node_modules/.bin/eslint --fix --ext ts,js .

scripts/lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7+
echo "==> Running eslint"
78
./node_modules/.bin/eslint --ext ts,js .

scripts/test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,5 @@ else
5252
echo
5353
fi
5454

55-
# Run tests
5655
echo "==> Running tests"
5756
./node_modules/.bin/jest "$@"

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '8.5.2'; // x-release-please-version
1+
export const VERSION = '8.5.3'; // x-release-please-version

0 commit comments

Comments
 (0)