0b374bbe38
* refactor to a lean implementation * update gitignore * rework retry errors * add main test example * remove integration tests * prettier fix
49 lines
675 B
Plaintext
49 lines
675 B
Plaintext
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
|
|
# Swap the comments on the following lines if you don't wish to use zero-installs
|
|
# Documentation here: https://yarnpkg.com/features/zero-installs
|
|
.yarn/cache
|
|
#.pnp.*
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Dependency directory
|
|
node_modules
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
.env.test
|
|
.envrc
|
|
|
|
# Ignore built ts files
|
|
lib
|
|
|
|
coverage/
|
|
|
|
# asdf config file
|
|
.tool-versions
|
|
|
|
# Visual Studio Code
|
|
.vscode/*
|