Socket
Socket
Sign inDemoInstall

kefir

Package Overview
Dependencies
Maintainers
2
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kefir - npm Package Compare versions

Comparing version 3.8.5 to 3.8.6

5

changelog.md

@@ -0,1 +1,6 @@

## 3.8.6 (06/01/2019)
- Added missing Flow type definition for `Pool.unplug` method [#289](https://github.com/kefirjs/kefir/pull/289) [@Macil](https://github.com/Macil)
- Added "module" field to package.json for Rollup [#290](https://github.com/kefirjs/kefir/pull/290) [@mAAdhaTTah](https://github.com/mAAdhaTTah)
## 3.8.5 (13/09/2018)

@@ -2,0 +7,0 @@

2

dist/kefir.min.js

@@ -1,2 +0,2 @@

/*! Kefir.js v3.8.5
/*! Kefir.js v3.8.6
* https://github.com/kefirjs/kefir

@@ -3,0 +3,0 @@ */

{
"name": "kefir",
"version": "3.8.5",
"version": "3.8.6",
"description": "Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage",
"main": "dist/kefir.js",
"module": "dist/kefir.esm.js",
"scripts": {

@@ -55,3 +56,2 @@ "prettify": "./configs/prettier.sh",

"semver": "5.3.0",
"shelljs": "0.5.3",
"sinon": "1.17.1",

@@ -58,0 +58,0 @@ "sinon-chai": "^2.14.0",

@@ -0,4 +1,4 @@

var child_process = require('child_process')
var inquirer = require('inquirer')
var semver = require('semver')
var shell = require('shelljs')
var fs = require('fs')

@@ -83,3 +83,7 @@

if (!dry) {
if (shell.exec(cmd, {silent: false}).code === 0) {
var proc = child_process.spawnSync(cmd, {
stdio: 'inherit',
shell: true,
})
if (proc.status === 0) {
console.log('... ok')

@@ -86,0 +90,0 @@ } else {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc