Skip to content

Commit

Permalink
feat: Meta adjustments for music kit
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanwilkes committed Apr 17, 2021
1 parent f1b1c84 commit c779063
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ SENDGRID_API_KEY=SG.************************************************************

MATCH_WITH_YOUTUBE=false
DEFAULT_AUDIO_ID=GENERATED

MUSIC_KIT_SECRET=FILE.p8
MUSIC_KIT_TEAM_ID=**********
MUSIC_KIT_KEY_ID=**********
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ dist
**/bundle*
cpsc2650bwilkes-82437d726ff6.json
/build/
**/*.p8
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
"miniget": "^4.2.0",
"mongoose": "^5.11.15",
"multer": "^1.4.2",
"musickit-typescript": "^1.2.4",
"prop-types": "^15.7.2",
"querystring": "^0.2.1",
"rc-slider": "^9.7.1",
Expand Down
2 changes: 1 addition & 1 deletion src/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module.exports = {
]
},
resolve: {
extensions: [".tsx", ".js", ".ts"]
extensions: [".tsx", ".js", ".d.ts", ".ts"]
},
externals: {
jquery: "jQuery"
Expand Down
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
"esModuleInterop": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"skipLibCheck": true
},
"exclude": [
"build/**/*",
"src/frontend/**/*",
"**/*.spec.ts",
"config"
"config",
"node_modules/musickit-typescript/"
]
}

0 comments on commit c779063

Please sign in to comment.