Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "52deco", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Use decorator without transpilation", | ||
@@ -31,3 +31,9 @@ "main": "index.js", | ||
}, | ||
"homepage": "https://github.com/kt3k/52deco#readme" | ||
"homepage": "https://github.com/kt3k/52deco#readme", | ||
"nyc": { | ||
"reporter": [ | ||
"text", | ||
"lcov" | ||
] | ||
} | ||
} |
@@ -1,3 +0,6 @@ | ||
# 52deco v1.0.0 | ||
# 52deco v1.0.1 | ||
[![CircleCI](https://circleci.com/gh/kt3k/52deco.svg?style=svg)](https://circleci.com/gh/kt3k/52deco) | ||
[![codecov](https://codecov.io/gh/kt3k/52deco/branch/master/graph/badge.svg)](https://codecov.io/gh/kt3k/52deco) | ||
> Use decorator without transpilation | ||
@@ -50,3 +53,3 @@ | ||
``` | ||
```js | ||
@decorator | ||
@@ -53,0 +56,0 @@ class Foo { |
@@ -31,2 +31,10 @@ const deco = require('./') | ||
}) | ||
it('throws when the specified key does not exist', () => { | ||
class Foo {} | ||
assert.throws(() => { | ||
deco.method(() => {}, Foo, 'bar') | ||
}) | ||
}) | ||
}) | ||
@@ -33,0 +41,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
105678
56
73