You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit to master
yarn build
npm version ...
npm publish
NPM Installation
In the same directory with package.json
# Create npmrc file so the project can talk to github package
touch .npmrc
# Point the project to BrainbeatsUCF org
echo registry=https://npm.pkg.github.com/BrainBeatsUCF >> .npmrc
# Install the audio package
npm install @brainbeatsucf/brainbeats-audio-player
Properties for the component
style?: React.CSSProperties
setPlayingIndexAudioPackage: any
audioObjectArray: AudioObject[]
where AudioObject is:
interface AudioObject {
title: string,
authorName: string,
imageUrl: string,
audioUrl: string
}