Skip to content

Commit a6bd431

Browse files
SDK regeneration
1 parent 3f850a2 commit a6bd431

File tree

226 files changed

+4938
-1592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+4938
-1592
lines changed

.github/workflows/ci.yml

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -3,64 +3,64 @@ name: ci
33
on: [push]
44

55
jobs:
6-
compile:
7-
runs-on: ubuntu-latest
8-
9-
steps:
10-
- name: Checkout repo
11-
uses: actions/checkout@v4
12-
13-
- name: Set up node
14-
uses: actions/setup-node@v3
15-
16-
- name: Install dependencies
17-
run: yarn install
18-
19-
- name: Compile
20-
run: yarn build
21-
22-
test:
23-
runs-on: ubuntu-latest
24-
25-
steps:
26-
- name: Checkout repo
27-
uses: actions/checkout@v4
28-
29-
- name: Set up node
30-
uses: actions/setup-node@v3
31-
32-
- name: Install dependencies
33-
run: yarn install
34-
35-
- name: Test
36-
run: yarn test
37-
38-
publish:
39-
needs: [ compile, test ]
40-
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
41-
runs-on: ubuntu-latest
42-
steps:
43-
- name: Checkout repo
44-
uses: actions/checkout@v4
45-
46-
- name: Set up node
47-
uses: actions/setup-node@v3
48-
49-
- name: Install dependencies
50-
run: yarn install
51-
52-
- name: Build
53-
run: yarn build
54-
55-
- name: Publish to npm
56-
run: |
57-
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
58-
if [[ ${GITHUB_REF} == *alpha* ]]; then
59-
npm publish --access public --tag alpha
60-
elif [[ ${GITHUB_REF} == *beta* ]]; then
61-
npm publish --access public --tag beta
62-
else
63-
npm publish --access public
64-
fi
65-
env:
66-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
6+
compile:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
12+
13+
- name: Set up node
14+
uses: actions/setup-node@v3
15+
16+
- name: Install dependencies
17+
run: yarn install
18+
19+
- name: Compile
20+
run: yarn build
21+
22+
test:
23+
runs-on: ubuntu-latest
24+
25+
steps:
26+
- name: Checkout repo
27+
uses: actions/checkout@v4
28+
29+
- name: Set up node
30+
uses: actions/setup-node@v3
31+
32+
- name: Install dependencies
33+
run: yarn install
34+
35+
- name: Test
36+
run: yarn test
37+
38+
publish:
39+
needs: [compile, test]
40+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
41+
runs-on: ubuntu-latest
42+
steps:
43+
- name: Checkout repo
44+
uses: actions/checkout@v4
45+
46+
- name: Set up node
47+
uses: actions/setup-node@v3
48+
49+
- name: Install dependencies
50+
run: yarn install
51+
52+
- name: Build
53+
run: yarn build
54+
55+
- name: Publish to npm
56+
run: |
57+
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
58+
if [[ ${GITHUB_REF} == *alpha* ]]; then
59+
npm publish --access public --tag alpha
60+
elif [[ ${GITHUB_REF} == *beta* ]]; then
61+
npm publish --access public --tag beta
62+
else
63+
npm publish --access public
64+
fi
65+
env:
66+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dist
2+
*.tsbuildinfo
3+
_tmp_*
4+
*.tmp
5+
.tmp/
6+
*.log
7+
.DS_Store
8+
Thumbs.db
9+

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phenoml",
3-
"version": "0.0.4",
3+
"version": "0.0.6",
44
"private": false,
55
"repository": "github:phenoml/phenoml-ts-sdk",
66
"type": "commonjs",
@@ -45,7 +45,7 @@
4545
"@types/jest": "^29.5.14",
4646
"ts-jest": "^29.3.4",
4747
"jest-environment-jsdom": "^29.7.0",
48-
"msw": "^2.8.4",
48+
"msw": "2.11.2",
4949
"@types/node": "^18.19.70",
5050
"prettier": "^3.4.2",
5151
"typescript": "~5.7.2"

0 commit comments

Comments
 (0)