Skip to content

Commit

Permalink
🚀⚙️ Add test message
Browse files Browse the repository at this point in the history
  • Loading branch information
MulverineX committed Sep 8, 2023
1 parent 7ad069c commit f8b79e1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
build
3 changes: 3 additions & 0 deletions packages/core/changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# 0.1.1
Hello? *tap tap* is this thing on?

# 0.1.0
Hello World
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@refracturemedia/music-core",
"version": "0.1.0",
"version": "0.1.1",
"description": "The core backend for Refracture Music",
"main": "lib/index.js",
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ export class MusicCore {

export const Music = new MusicCore();

console.log('[Music Core] Hello world!!!!!!!!')
console.log('[Music Core] Hello world!!!!!!!!');

declare function sendMessage(channel_name: string, message: any): any;

sendMessage('test', '[Music Core] Hello? *tap tap* Is this thing on?');

export default Music;

0 comments on commit f8b79e1

Please sign in to comment.