From a7bc0d5dcf867b2ac099ab2b284c5200da9a741c Mon Sep 17 00:00:00 2001 From: Qiaosen Huang Date: Tue, 1 Mar 2016 20:36:52 +0800 Subject: [PATCH] bump 0.1.2 --- package.json | 5 ++--- src/index.ts | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 895f672..92c8281 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,13 @@ { "name": "ts-router", - "version": "0.1.1", + "version": "0.1.2", "description": "koa router middleware, typescript fully supported, jersey like coding", "main": "dist/index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", + "test": "gulp test", "install": "gulp build;gulp install" }, "dependencies": { - "babel-polyfill": "^6.6.1", "co-body": "^4.0.0", "formidable": "^1.0.17", "koa": "^2.0.0-alpha.3", diff --git a/src/index.ts b/src/index.ts index 3aa2bae..0b85497 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,3 @@ -require('babel-polyfill'); export * from './util'; import Response from './response'; export {Response };