Skip to content

Commit

Permalink
chore: rebuild project due to codegen change (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored May 14, 2024
1 parent fb7c1c8 commit 47099b6
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest
if: github.repository == 'muxinc/mux-node-sdk'


steps:
- uses: actions/checkout@v4
Expand All @@ -22,16 +22,13 @@ jobs:
node-version: '18'

- name: Install dependencies
run: |
yarn install
run: yarn install

- name: Check types
run: |
yarn build
run: ./scripts/lint
test:
name: test
runs-on: ubuntu-latest
if: github.repository == 'muxinc/mux-node-sdk'

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "8.5.2"
".": "8.5.3"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 95
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mux/mux-node",
"version": "8.5.2",
"version": "8.5.3",
"description": "The official TypeScript library for the Mux API",
"author": "Mux <devex@mux.com>",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions scripts/format
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

set -e

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

echo "==> Running eslint --fix"
./node_modules/.bin/eslint --fix --ext ts,js .
1 change: 1 addition & 0 deletions scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ set -e

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

echo "==> Running eslint"
./node_modules/.bin/eslint --ext ts,js .
1 change: 0 additions & 1 deletion scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,5 @@ else
echo
fi

# Run tests
echo "==> Running tests"
./node_modules/.bin/jest "$@"
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '8.5.2'; // x-release-please-version
export const VERSION = '8.5.3'; // x-release-please-version

0 comments on commit 47099b6

Please sign in to comment.