Skip to content

Commit 0533ae4

Browse files
committed
SDK regeneration
1 parent 85c7ef3 commit 0533ae4

File tree

339 files changed

+21134
-11404
lines changed

Some content is hidden

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

339 files changed

+21134
-11404
lines changed

.babelrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Specify files that shouldn't be modified by Fern

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: ci
2+
3+
on: [push]
4+
5+
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: Compile
17+
run: yarn && yarn build
18+
19+
test:
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Checkout repo
24+
uses: actions/checkout@v4
25+
26+
- name: Set up node
27+
uses: actions/setup-node@v3
28+
29+
- name: Compile
30+
run: yarn && yarn test

.github/workflows/nodejs.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/npmpublish.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
11
node_modules
2-
.vscode
3-
.nyc_output
4-
coverage.lcov
5-
coverage
6-
.DS_Store
7-
dist*
8-
tests/e2e/node-js/package.json
9-
tests/e2e/node-js/yarn.lock
10-
tests/e2e/typescript/package.json
11-
tests/e2e/typescript/yarn.lock
12-
tests/e2e/typescript/index.js
13-
.cache
14-
yarn-error.log
15-
*.tgz
2+
.DS_Store
3+
/dist

.mocharc.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.npmignore

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
1-
.github
1+
node_modules
2+
src
23
tests
3-
sample
4-
.npmignore
5-
.babelrc
6-
coverage
7-
babel-register.js
8-
.nyc_output
9-
.vscode
10-
.DS_Store
11-
.mocharc.json
12-
.nycrc
13-
libs/*
14-
utils/*
15-
tsconfig*
16-
fixup.sh
17-
index.ts
18-
*.tgz
19-
test-e2e.sh
4+
.gitignore
5+
.github
6+
.fernignore
7+
.prettierrc.yml
8+
tsconfig.json
9+
yarn.lock
10+
pnpm-lock.yaml

.nycrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
tabWidth: 4
2+
printWidth: 120

0 commit comments

Comments
 (0)