Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "redux-cut", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Middleware to block redux actions based on provided criteria.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "./node_modules/.bin/mocha --compilers js:babel-register" | ||
"test": "./node_modules/.bin/mocha --compilers js:babel-register", | ||
"clean": "rimraf dist", | ||
"build": "babel src --out-dir dist", | ||
"prepublish": "npm run clean && npm run test && npm run build" | ||
}, | ||
@@ -23,7 +26,9 @@ "repository": { | ||
"devDependencies": { | ||
"babel": "^6.5.2", | ||
"babel-preset-es2015": "^6.6.0", | ||
"babel-register": "^6.8.0", | ||
"chai": "^3.5.0", | ||
"mocha": "^2.4.5" | ||
"mocha": "^2.4.5", | ||
"rimraf": "^2.5.2" | ||
} | ||
} |
import chai from 'chai'; | ||
import cutMiddleware, { isBlockedAction, combineCriteria } from '../index'; | ||
import cutMiddleware, { isBlockedAction, combineCriteria } from '../src/index'; | ||
@@ -4,0 +4,0 @@ describe('cut middleware', () => { |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
40182
19
260
6
1