Skip to content

Commit

Permalink
🌿 Fern Regeneration -- December 29, 2023 (#114)
Browse files Browse the repository at this point in the history
* SDK regeneration

* SDK regeneration

* scaffolding readme.md

* further readme cleanup

* minor consistency improvements

* add oauth helpers

* fix compile

* SDK regeneration

* fixing typo

* SDK regeneration

---------

Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
Co-authored-by: Dmitry Pimenov <dmitry.pimenov@webflow.com>
Co-authored-by: dsinghvi <dsinghvi@umich.edu>
  • Loading branch information
3 people committed Feb 22, 2024
1 parent 9ad49c0 commit 4e705f9
Show file tree
Hide file tree
Showing 559 changed files with 15,924 additions and 7,663 deletions.
31 changes: 0 additions & 31 deletions .eslintrc

This file was deleted.

8 changes: 8 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Specify files that shouldn't be modified by Fern

README.md

# Oauth Helpers
src/index.ts
src/oauth.ts
src/wrapper
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 }}
102 changes: 0 additions & 102 deletions .github/workflows/code-quality.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/npm-publish.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/semgrep.yml

This file was deleted.

74 changes: 12 additions & 62 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,63 +1,13 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Coverage directory used by tools like istanbul
coverage
*.lcov

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.production

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

temp
node_modules
.DS_Store

# Compiled files
dist/
/dist
/Client.d.ts
/Client.js
/environments.d.ts
/environments.js
/index.d.ts
/index.js
/api
/core
/errors
/serialization
8 changes: 8 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
src
.gitignore
.github
.fernignore
.prettierrc.yml
tsconfig.json
yarn.lock
5 changes: 0 additions & 5 deletions .prettierignore

This file was deleted.

6 changes: 0 additions & 6 deletions .prettierrc

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
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 4e705f9

Please sign in to comment.