-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update rollup-plugin-ts, rearrange source so that .d.ts output works.
1 parent
204f107
commit 4fe3cbe
Showing
17 changed files
with
472 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
export { load } from './load'; | ||
export { sound } from './sound'; | ||
// eslint-disable-next-line @typescript-eslint/camelcase | ||
export { utils_ns as utils } from './utils'; | ||
export { MovieClip } from './MovieClip'; | ||
export { Scene } from './Scene'; | ||
export { Timeline } from './Timeline'; | ||
export { Tween } from './Tween'; | ||
export { Animator } from './Animator'; | ||
export { AnimatorTimeline } from './AnimatorTimeline'; | ||
|
||
export const VERSION = '__VERSION__'; | ||
export * from './load'; | ||
export * from './sound'; | ||
export * from './utils'; | ||
export * from './MovieClip'; | ||
export * from './Scene'; | ||
export * from './Timeline'; | ||
export * from './Tween'; | ||
export * from './Animator'; | ||
export * from './AnimatorTimeline'; | ||
export * from './Container'; | ||
export * from './Sprite'; | ||
export * from './Graphics'; | ||
export * from './Text'; | ||
export * from './DisplayObject'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
// Because AnimateAsset wants to import the entire library for typing purposes, they are separated | ||
// at this level to try to reduce odd references | ||
export * from './main'; | ||
export { load, sound, utils, MovieClip, Scene, Timeline, Tween, Animator, AnimatorTimeline, DrawCommands } from './animate'; | ||
|
||
export { | ||
AnimateContainer as Container, | ||
AnimateSprite as Sprite, | ||
AnimateGraphics as Graphics, | ||
AnimateText as Text, | ||
AnimateDisplayObject as DisplayObject, | ||
} from './animate'; | ||
|
||
export const VERSION = '__VERSION__'; | ||
|
||
export * from './AnimateAsset'; |
This file was deleted.
Oops, something went wrong.