-
-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to npm #117
Switch to npm #117
Conversation
e93a1dc
to
72158e2
Compare
@@ -24,7 +24,7 @@ import { playbackManager } from './playbackManager'; | |||
import { DocumentManager } from './documentManager'; | |||
|
|||
export abstract class CommandHandler { | |||
private static playerManager: cast.framework.PlayerManager; | |||
private static playerManager: framework.PlayerManager; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a question here, I don't fully understand why "cast" is implicit here..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found this issue, basically the typings are not exported in the index, but in framework.
Shouldn't affect runtime though as it's all TypeScript abstraction as usual :)
Good catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't see anything that I wanted to do differently. LGTM :)
I was able to test this today on an ATV device and I had no issues with the switch, so I'm merging this :) |
Changes this project package management from
yarn
tonpm
, as it's being done in all the organization repositories.Major reasons for switching:
Extra