@cycle/base
Advanced tools
Comparing version 1.0.0 to 1.2.0
@@ -25,3 +25,3 @@ export interface Observer { | ||
dispose: (sinks: any, sinkProxies: SinkProxies, sources: any) => void; | ||
makeHoldSubject: () => any; | ||
makeHoldSubject: () => HoldSubject; | ||
isValidStream: (stream: any) => boolean; | ||
@@ -28,0 +28,0 @@ streamSubscribe: StreamSubscribe; |
{ | ||
"name": "@cycle/base", | ||
"version": "1.0.0", | ||
"version": "1.2.0", | ||
"description": "Base infrastructure for a generic run() function for Cycle.js", | ||
@@ -49,7 +49,16 @@ "license": "MIT", | ||
"typescript": "^1.7.5", | ||
"uglify-js": "2.5.0", | ||
"uglify-js": "2.6.1", | ||
"validate-commit-msg": "^1.1.1" | ||
}, | ||
"browserify": { | ||
"transform": [["babelify", { "presets": ["es2015"] }]] | ||
"transform": [ | ||
[ | ||
"babelify", | ||
{ | ||
"presets": [ | ||
"es2015" | ||
] | ||
} | ||
] | ||
] | ||
}, | ||
@@ -81,4 +90,8 @@ "engines": { | ||
"prepublish": "npm run lib", | ||
"preversion": "npm run dist && git add dist/ && git commit -m 'chore(dist): build dist/'" | ||
"preversion": "npm run dist && git add dist/ && git diff --quiet --exit-code --cached || git commit -a -m 'chore(dist): build dist/'", | ||
"version-patch": "npm version patch --message 'chore(version): %s'", | ||
"version-minor": "npm version minor --message 'chore(version): %s'", | ||
"version-major": "npm version major --message 'chore(version): %s'", | ||
"postversion": "npm publish --access=public" | ||
} | ||
} |
@@ -32,3 +32,3 @@ export interface Observer { | ||
dispose: (sinks: any, sinkProxies: SinkProxies, sources: any) => void; | ||
makeHoldSubject: () => any; | ||
makeHoldSubject: () => HoldSubject; | ||
isValidStream: (stream: any) => boolean; | ||
@@ -35,0 +35,0 @@ streamSubscribe: StreamSubscribe; |
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
36988
22