Skip to content

Commit

Permalink
Hello 7.0.0!
Browse files Browse the repository at this point in the history
🌿 Fern Regeneration -- October 30, 2023
  • Loading branch information
billytrend-cohere authored Nov 3, 2023
2 parents 17bdd9a + 231681c commit 8a79b22
Show file tree
Hide file tree
Showing 249 changed files with 5,782 additions and 6,255 deletions.
18 changes: 0 additions & 18 deletions .eslintrc

This file was deleted.

2 changes: 2 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Specify files that shouldn't be modified by Fern
README.md
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: ci

on: [push]

jobs:
compile:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Set up node
uses: actions/setup-node@v3

- name: Compile
run: yarn && yarn build

publish:
needs: [ compile ]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Set up node
uses: actions/setup-node@v3

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Publish to npm
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
22 changes: 0 additions & 22 deletions .github/workflows/release.yaml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/test.yaml

This file was deleted.

35 changes: 12 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
.DS_Store
node_modules
dev.ts

# local env files
.env.local
.env.*.local
.env.test
.env

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.DS_Store
/dist
/Client.d.ts
/Client.js
/environments.d.ts
/environments.js
/index.d.ts
/index.js
/api
/core
/errors
/serialization
13 changes: 7 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
**/.*
.mochaarc.json
test/
node_modules
src
.gitignore
.github
.fernignore
.prettierrc.yml
tsconfig.json
webpack.config.js
node_modules/
DEV.md
yarn.lock
1 change: 0 additions & 1 deletion .prettierignore

This file was deleted.

1 change: 0 additions & 1 deletion .prettierrc.json

This file was deleted.

2 changes: 2 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tabWidth: 4
printWidth: 120
35 changes: 0 additions & 35 deletions DEV.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 8a79b22

Please sign in to comment.