Skip to content

Commit 8a79b22

Browse files
Hello 7.0.0!
🌿 Fern Regeneration -- October 30, 2023
2 parents 17bdd9a + 231681c commit 8a79b22

File tree

249 files changed

+5782
-6255
lines changed

Some content is hidden

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

249 files changed

+5782
-6255
lines changed

.eslintrc

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

.fernignore

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

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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@v3
12+
13+
- name: Set up node
14+
uses: actions/setup-node@v3
15+
16+
- name: Compile
17+
run: yarn && yarn build
18+
19+
publish:
20+
needs: [ compile ]
21+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- name: Checkout repo
26+
uses: actions/checkout@v3
27+
28+
- name: Set up node
29+
uses: actions/setup-node@v3
30+
31+
- name: Install dependencies
32+
run: yarn install
33+
34+
- name: Build
35+
run: yarn build
36+
37+
- name: Publish to npm
38+
run: |
39+
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
40+
npm publish --access public
41+
env:
42+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yaml

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

.github/workflows/test.yaml

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

.gitignore

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
1-
.DS_Store
21
node_modules
3-
dev.ts
4-
5-
# local env files
6-
.env.local
7-
.env.*.local
8-
.env.test
9-
.env
10-
11-
# Log files
12-
npm-debug.log*
13-
yarn-debug.log*
14-
yarn-error.log*
15-
pnpm-debug.log*
16-
17-
# Editor directories and files
18-
.idea
19-
.vscode
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?
2+
.DS_Store
3+
/dist
4+
/Client.d.ts
5+
/Client.js
6+
/environments.d.ts
7+
/environments.js
8+
/index.d.ts
9+
/index.js
10+
/api
11+
/core
12+
/errors
13+
/serialization

.npmignore

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
**/.*
2-
.mochaarc.json
3-
test/
1+
node_modules
2+
src
3+
.gitignore
4+
.github
5+
.fernignore
6+
.prettierrc.yml
47
tsconfig.json
5-
webpack.config.js
6-
node_modules/
7-
DEV.md
8+
yarn.lock

.prettierignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc.json

Lines changed: 0 additions & 1 deletion
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

DEV.md

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

LICENSE

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

0 commit comments

Comments
 (0)