zen-observable-ts
Advanced tools
Comparing version 0.8.15 to 0.8.16
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
var zenObservable_1 = require("./zenObservable"); | ||
__export(require("./zenObservable")); | ||
tslib_1.__exportStar(require("./zenObservable"), exports); | ||
exports.default = zenObservable_1.Observable; | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var zen_observable_1 = __importDefault(require("zen-observable")); | ||
var tslib_1 = require("tslib"); | ||
var zen_observable_1 = tslib_1.__importDefault(require("zen-observable")); | ||
exports.Observable = zen_observable_1.default; | ||
//# sourceMappingURL=zenObservable.js.map |
{ | ||
"name": "zen-observable-ts", | ||
"version": "0.8.15", | ||
"version": "0.8.16", | ||
"description": "An Implementation of ES Observables in Typescript", | ||
@@ -11,2 +11,3 @@ "author": "Evans Hauser <evanshauser@gmail.com>", | ||
"typings": "./lib/index.d.ts", | ||
"sideEffects": false, | ||
"repository": { | ||
@@ -21,15 +22,10 @@ "type": "git", | ||
"scripts": { | ||
"build:browser": "browserify ./lib/bundle.umd.js -o=./lib/bundle.js --i zen-observable && npm run minify:browser", | ||
"build": "tsc -p ./tsconfig.cjs.json", | ||
"bundle": "rollup -c", | ||
"build": "tsc && rollup -c", | ||
"clean": "rimraf lib/* && rimraf coverage/*", | ||
"coverage": "jest --coverage", | ||
"filesize": "npm run build && npm run build:browser", | ||
"filesize": "../../scripts/minify", | ||
"lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts", | ||
"minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"postbuild": "npm run bundle", | ||
"prebuild": "npm run clean", | ||
"prepare": "npm run lint && npm run build", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"test": "jest", | ||
"prepare": "npm run build", | ||
"test": "npm run lint && jest", | ||
"watch": "tsc -w -p ." | ||
@@ -39,10 +35,8 @@ }, | ||
"@types/jest": "22.2.3", | ||
"browserify": "16.2.3", | ||
"jest": "22.4.4", | ||
"rimraf": "2.6.3", | ||
"rollup": "0.68.2", | ||
"rollup": "1.4.1", | ||
"ts-jest": "22.4.6", | ||
"tslint": "5.12.1", | ||
"typescript": "3.0.3", | ||
"uglify-js": "3.4.9" | ||
"tslint": "5.13.1", | ||
"typescript": "3.0.3" | ||
}, | ||
@@ -63,5 +57,6 @@ "jest": { | ||
"dependencies": { | ||
"tslib": "^1.9.3", | ||
"zen-observable": "^0.8.0" | ||
}, | ||
"gitHead": "6f5d0cfb73e61c6f83caed9e37d37c4451a64c7b" | ||
"gitHead": "2c960e057de9d664855bb18df4a4bd25c88bb6ef" | ||
} |
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
47419
7
113
2
83
+ Addedtslib@^1.9.3
+ Addedtslib@1.14.1(transitive)