core-decorators
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -50,2 +50,6 @@ 'use strict'; | ||
var _throttle = require('./throttle'); | ||
exports.throttle = _interopRequire(_throttle); | ||
var _decorate = require('./decorate'); | ||
@@ -52,0 +56,0 @@ |
{ | ||
"name": "core-decorators", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "Library of ES2016 (ES7) JavaScript decorators inspired by languages that come with built-ins like @override, @deprecate, @autobind, @mixin and more! Works great with React/Angular/more!", | ||
@@ -5,0 +5,0 @@ "main": "lib/core-decorators.js", |
@@ -15,3 +15,3 @@ # core-decorators.js [![Build Status](https://travis-ci.org/jayphelps/core-decorators.js.svg?branch=master)](https://travis-ci.org/jayphelps/core-decorators.js) | ||
This can be consumed by any transpiler that supports decorators like [babel.js](https://babeljs.io/) or using the recent iterations of TypeScript. To use with babel, you must include the correct babel plugins for decorator [parsing](http://babeljs.io/docs/plugins/syntax-decorators/) and [transformation](http://babeljs.io/docs/plugins/transform-decorators/) or use [stage-1](http://babeljs.io/docs/plugins/preset-stage-1/). | ||
This can be consumed by any transpiler that supports decorators like [babel.js](https://babeljs.io/) or using the recent iterations of TypeScript. To use with babel, you must include the correct babel plugins for decorator [parsing](http://babeljs.io/docs/plugins/syntax-decorators/) and [transformation](http://babeljs.io/docs/plugins/transform-decorators/) or use [stage-1](http://babeljs.io/docs/plugins/preset-stage-1/). *Babel 6 [does not yet support decorators](https://phabricator.babeljs.io/T2645), use Babel 5 until that is fixed.* | ||
@@ -18,0 +18,0 @@ ## Decorators |
@@ -11,3 +11,4 @@ export { default as override } from './override'; | ||
export { default as debounce } from './debounce'; | ||
export { default as throttle } from './throttle'; | ||
export { default as decorate } from './decorate'; | ||
export { default as mixin, default as mixins } from './mixin'; | ||
export { default as mixin, default as mixins } from './mixin'; |
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
75197
1618