Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bobflux-monitor

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bobflux-monitor - npm Package Compare versions

Comparing version 2.0.7 to 3.0.0

CHANGELOG.md

10

example.ts
import * as b from 'bobril';
import { bootstrap } from 'fun-model';
import { createDefaultState} from './example/state';
import { createDefaultState } from './example/state';
import { mainPage } from './example/mainPage';

@@ -8,11 +8,11 @@ import * as monitor from './index';

// Bobflux
// bootstrap(createDefaultState(), monitor.init());
// bootstrap(createDefaultState(), { debugCallback: monitor.init() });
// fun-model
bootstrap(createDefaultState(), b.invalidate, monitor.init());
bootstrap(createDefaultState(), b.invalidate, { debugCallback: monitor.init() });
b.routes(
b.route({handler: mainPage }, [
b.route({handler: mainPage })
b.route({ handler: mainPage }, [
b.route({ handler: mainPage })
])
);
{
"name": "bobflux-monitor",
"version": "2.0.7",
"version": "3.0.0",
"description": "Component for time travelling in bobflux/fun-model application state history.",

@@ -33,9 +33,18 @@ "typescript": {

"dependencies": {
"bobril": "^5.0.4",
"fun-model": "^2.1.0 || ^1.3.0"
"bobril": "^6.3.3",
"fun-model": "^5.0.1"
},
"bobril": {
"example": "example.ts",
"title": "Bobflux-monitor"
"title": "Bobflux-monitor",
"compilerOptions": {
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true
}
}
}

@@ -13,3 +13,3 @@ # bobflux-monitor

bootstrap(createDefaultState(), monitor.init());
bootstrap(createDefaultState(), { debugCallback: monitor.init() });
```

@@ -20,3 +20,3 @@ ```typescript

bootstrap(createDefaultState(), b.invalidate, monitor.init());
bootstrap(createDefaultState(), b.invalidate, { debugCallback: monitor.init() });
```

@@ -23,0 +23,0 @@

@@ -17,3 +17,11 @@ {

"jsx": "react",
"reactNamespace": "b"
"reactNamespace": "b",
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true
},

@@ -20,0 +28,0 @@ "include": [

@@ -50,3 +50,5 @@ {

],
"no-consecutive-blank-lines": true,
"no-consecutive-blank-lines": [
true
],
"no-construct": true,

@@ -104,3 +106,2 @@ "no-constructor-vars": true,

],
"variable-name": [

@@ -107,0 +108,0 @@ true,

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