Emeralt storage plugin to store package tarball in Google Cloud Storage
Using npm:
npm install @emeralt/storage-gcs
or using yarn:
yarn add @emeralt/storage-gcs
new EmeraltStorageGCS(options)
type Options = {
// @google-cloud/storage options
// https://www.npmjs.com/package/@google-cloud/storage
storage: StorageOptions
path: {
// bucket to use
// default: emeralt-test
bucket: string
// prefix (for example, my/dir/prefix)
prefix?: string
}
}