object-observer
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "object-observer", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Object observer utility provides simple means to (deeply) observe specified object/array changes; implemented via native Proxy; changes delivered in a synchronous way", | ||
@@ -27,3 +27,3 @@ "keywords": [ | ||
], | ||
"main": "dist/module/object-observer.min.js", | ||
"main": "dist/node-module/object-observer.min.js", | ||
"author": { | ||
@@ -30,0 +30,0 @@ "name": "Guller Yuri", |
@@ -26,3 +26,3 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
- __1.0.0__ | ||
- __1.0.1__ | ||
- Added ES6 module packaging (both regular and minified) | ||
@@ -41,7 +41,11 @@ | ||
You have few ways to load the library: as an ES6 module (named or default, pay attention to the __module__ in the path) or as a regular script (into a 'window' global scope, or a custom scope provided by you). | ||
You have few ways to load the library: as an __ES6 module__ (named or default, pay attention to the __`module`__ / __`node-module`__ in the path) or as a __regular script__ (into a 'window' global scope, or a custom scope provided by you). | ||
* ES6 module - default import (__preferred__): | ||
```javascript | ||
// browser | ||
import Observable from 'dist/module/object-observer.min.js'; | ||
// NodeJS | ||
let Observable = require('./dist/node-module/object-observer'); | ||
``` | ||
@@ -48,0 +52,0 @@ |
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
83677
9
1391
212