chore: deps
This commit is contained in:
parent
6919093dc4
commit
a314e03a9e
|
@ -1,14 +1,17 @@
|
||||||
{
|
{
|
||||||
"name": "@avocado/entity",
|
"name": "@avocado/entity",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"author": "cha0s",
|
"author": "cha0s",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@avocado/core": "1.x",
|
"@avocado/core": "1.x",
|
||||||
|
"@avocado/graphics": "1.x",
|
||||||
"@avocado/math": "1.x",
|
"@avocado/math": "1.x",
|
||||||
"@avocado/mixins": "1.x",
|
"@avocado/mixins": "1.x",
|
||||||
"@avocado/resource": "1.x",
|
"@avocado/resource": "1.x",
|
||||||
|
"@avocado/physics": "1.x",
|
||||||
|
"@avocado/timing": "1.x",
|
||||||
"debug": "^3.1.0",
|
"debug": "^3.1.0",
|
||||||
"immutable": "4.0.0-rc.12",
|
"immutable": "4.0.0-rc.12",
|
||||||
"lodash.mapvalues": "4.6.0",
|
"lodash.mapvalues": "4.6.0",
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import * as I from 'immutable';
|
import * as I from 'immutable';
|
||||||
|
|
||||||
import {Resource} from '@avocado/resource';
|
|
||||||
import {Vector} from '@avocado/math';
|
import {Vector} from '@avocado/math';
|
||||||
import {Property} from '@avocado/mixins';
|
import {Property} from '@avocado/mixins';
|
||||||
|
import {Resource} from '@avocado/resource';
|
||||||
|
|
||||||
export class Trait {
|
export class Trait {
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {Trait} from '@avocado/entity';
|
import {Trait} from '../trait';
|
||||||
|
|
||||||
export class Layered extends Trait {
|
export class Layered extends Trait {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import {Trait} from '@avocado/entity';
|
|
||||||
import {Rectangle, Vector} from '@avocado/math';
|
import {Rectangle, Vector} from '@avocado/math';
|
||||||
|
|
||||||
|
import {Trait} from '../trait';
|
||||||
|
|
||||||
export class Listed extends Trait {
|
export class Listed extends Trait {
|
||||||
|
|
||||||
initialize() {
|
initialize() {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {Trait} from '@avocado/entity';
|
import {Trait} from '../trait';
|
||||||
|
|
||||||
export class Roomed extends Trait {
|
export class Roomed extends Trait {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user