chore: deps

This commit is contained in:
cha0s 2019-03-28 12:56:42 -05:00
parent 6919093dc4
commit a314e03a9e
5 changed files with 9 additions and 5 deletions

View File

@ -1,14 +1,17 @@
{
"name": "@avocado/entity",
"version": "1.0.8",
"version": "1.0.9",
"main": "index.js",
"author": "cha0s",
"license": "MIT",
"dependencies": {
"@avocado/core": "1.x",
"@avocado/graphics": "1.x",
"@avocado/math": "1.x",
"@avocado/mixins": "1.x",
"@avocado/resource": "1.x",
"@avocado/physics": "1.x",
"@avocado/timing": "1.x",
"debug": "^3.1.0",
"immutable": "4.0.0-rc.12",
"lodash.mapvalues": "4.6.0",

View File

@ -1,8 +1,8 @@
import * as I from 'immutable';
import {Resource} from '@avocado/resource';
import {Vector} from '@avocado/math';
import {Property} from '@avocado/mixins';
import {Resource} from '@avocado/resource';
export class Trait {

View File

@ -1,4 +1,4 @@
import {Trait} from '@avocado/entity';
import {Trait} from '../trait';
export class Layered extends Trait {

View File

@ -1,6 +1,7 @@
import {Trait} from '@avocado/entity';
import {Rectangle, Vector} from '@avocado/math';
import {Trait} from '../trait';
export class Listed extends Trait {
initialize() {

View File

@ -1,4 +1,4 @@
import {Trait} from '@avocado/entity';
import {Trait} from '../trait';
export class Roomed extends Trait {