This commit is contained in:
crusader 2018-10-02 18:03:03 +09:00
parent fba9e42c4e
commit 0b204fcced
2 changed files with 2 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@overflow/core-js",
"version": "0.0.10",
"version": "0.0.11",
"description": "TypeScript library setup for multiple compilation targets using tsc and webpack",
"main": "./bundles/index.umd.js",
"module": "./esm5/index.js",
@ -55,9 +55,7 @@
"maxSubjectLength": 120
}
},
"peerDependencies": {
"tslib": ">=1.9.0"
},
"peerDependencies": {},
"dependencies": {
"reflect-metadata": "^0.1.12"
},

View File

@ -18,6 +18,5 @@ export abstract class Decorator<Attribute = {}> extends Annotation<Attribute> {
public constructor(attribute?: Attribute) {
super(attribute);
}
}