* Update client libs typescript README * Create index.d.ts files * Publish the ingestion library to NPM Library is now published at https://www.npmjs.com/package/openpipe; see README for details. * Rename package.json in /dist folder * Increment patch version * Increment package version * Add newline to publish.sh --------- Co-authored-by: David Corbitt <davidlcorbitt@gmail.com>
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Adapted from https://github.com/openai/openai-node/blob/master/build
|
|
|
|
set -exuo pipefail
|
|
|
|
./build.sh
|
|
|
|
(cd dist && pnpm publish --access public)
|