@cycle-robot-drivers/screen
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -208,4 +208,3 @@ "use strict"; | ||
var input$ = input(sources.goal || xstream_1.default.never(), sources.cancel || xstream_1.default.never(), sources.DOM.select('.choice').events('click')); | ||
var reducer = transitionReducer(input$); | ||
; | ||
var reducer = transitionReducer(input$, options); | ||
var status$ = status(sources.state.stream); | ||
@@ -212,0 +211,0 @@ var outputs = output(sources.state.stream); |
@@ -203,4 +203,3 @@ var __assign = (this && this.__assign) || function () { | ||
var input$ = input(sources.goal || xs.never(), sources.cancel || xs.never(), sources.DOM.select('.choice').events('click')); | ||
var reducer = transitionReducer(input$); | ||
; | ||
var reducer = transitionReducer(input$, options); | ||
var status$ = status(sources.state.stream); | ||
@@ -207,0 +206,0 @@ var outputs = output(sources.state.stream); |
{ | ||
"name": "@cycle-robot-drivers/screen", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Cycle.js drivers for rendering a robot face", | ||
@@ -5,0 +5,0 @@ "author": "Michael Jae-Yoon Chung", |
@@ -280,3 +280,3 @@ import xs from 'xstream'; | ||
); | ||
const reducer = transitionReducer(input$);; | ||
const reducer = transitionReducer(input$, options); | ||
const status$ = status(sources.state.stream); | ||
@@ -283,0 +283,0 @@ const outputs = output(sources.state.stream); |
@@ -47,3 +47,3 @@ import xs from 'xstream' | ||
// Create the action to test | ||
const goal = 'happy'; | ||
const goal = 'HAPPY'; | ||
const goal_id = generateGoalID(); | ||
@@ -93,3 +93,3 @@ const goal$ = goalMark$.mapTo({ | ||
// Create the action to test | ||
const goal = 'happy'; | ||
const goal = 'HAPPY'; | ||
const goal_id = generateGoalID(); | ||
@@ -169,3 +169,3 @@ const goal$ = goalMark$.mapTo({ | ||
// Create the action to test | ||
const goal = 'happy'; | ||
const goal = 'HAPPY'; | ||
const goal_id = generateGoalID(); | ||
@@ -217,3 +217,3 @@ const goal$ = goalMark$.mapTo({ | ||
// Create the action to test | ||
const goal = 'happy'; | ||
const goal = 'HAPPY'; | ||
const goal_id = generateGoalID(); | ||
@@ -270,3 +270,3 @@ const goal$ = goalMark$.mapTo({ | ||
const goal_ids = [generateGoalID(), generateGoalID()]; | ||
const goals = ['happy', 'sad']; | ||
const goals = ['HAPPY', 'SAD']; | ||
const goal$ = goalMark$.map(i => ({ | ||
@@ -273,0 +273,0 @@ goal_id: goal_ids[i], |
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
176676
3270