Skip to content

Commit

Permalink
fix(PullZone): Type decorator import
Browse files Browse the repository at this point in the history
  • Loading branch information
stonelasley committed Sep 30, 2018
1 parent 35e0d9b commit 6cd757f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ cache:
notifications:
email: false
node_js:
- node
- '8'
script:
- npm run test:prod && npm run build
after_success:
- npm run report-coverage
- npm run deploy-docs
- npm run semantic-release
- npm run semantic-release
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bunnycdn-node",
"version": "0.0.1",
"version": "0.1.0",
"main": "dist/bunnycdn-node.umd.js",
"module": "dist/bunnycdn-node.es5.js",
"typings": "dist/types/bunnycdn-node.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/models/pullzone.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @format
import { Type, classToPlain } from 'class-transformer';
import { classToPlain } from 'class-transformer';
import { Type } from 'class-transformer/decorators';
import { Host } from './host';

export class PullZone {
Expand Down

0 comments on commit 6cd757f

Please sign in to comment.