Skip to content

Commit

Permalink
Updated dependencies and misc changes.
Browse files Browse the repository at this point in the history
- [TEST] Changed test server to use fastify for ease of use.
- [MISC] Flatted directory structure in src directory.
- [MISC] Removed unnecessary typings.
- [MISC] Updated out-of-date dependencies to their latest versions and fixed all security vulnerabilities.
- [MISC] Added extra build scripts.
  • Loading branch information
robertcorponoi committed Oct 1, 2020
1 parent dd70d9a commit 526749f
Show file tree
Hide file tree
Showing 36 changed files with 4,370 additions and 2,545 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.2.2 / 2020-09-30
- [TEST] Changed test server to use fastify for ease of use.
- [MISC] Flatted directory structure in src directory.
- [MISC] Removed unnecessary typings.
- [MISC] Updated out-of-date dependencies to their latest versions and fixed all security vulnerabilities.
- [MISC] Added extra build scripts.

## 0.2.1 / 2020-04-16
- [MISC] Updated out-of-date dependencies to their latest versions which also fixed some fixed security vulnerabilities.

Expand Down
2 changes: 1 addition & 1 deletion lib/camera/Camera.d.ts → lib/Camera.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as PIXI from 'pixi.js';
import Options from '../options/Options';
import Options from './Options';
/**
* Camera that can be applied to a game/animation made with pixijs.
*/
Expand Down
237 changes: 237 additions & 0 deletions lib/Camera.js

Large diffs are not rendered by default.

File renamed without changes.
56 changes: 56 additions & 0 deletions lib/Options.js

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

File renamed without changes.
5 changes: 5 additions & 0 deletions lib/Vector.js

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

237 changes: 0 additions & 237 deletions lib/camera/Camera.js

This file was deleted.

4 changes: 2 additions & 2 deletions lib/effects/Effect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ export default abstract class Effect {
*
* @default 0;
*/
started: DOMHighResTimeStamp;
started: number;
/**
* A timestamp of when this effect was last run.
*
* @property {DOMHighResTimeStamp}
*
* @default 0
*/
current: DOMHighResTimeStamp;
current: number;
/**
* A reference to the singal that is dispatched when this effect is finished.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/effects/Effect.js

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

Loading

0 comments on commit 526749f

Please sign in to comment.