reactive-di
Advanced tools
Comparing version 4.0.16 to 4.0.17
@@ -5,2 +5,7 @@ # Change Log | ||
<a name="4.0.17"></a> | ||
## [4.0.17](https://github.com/zerkalica/reactive-di/compare/v4.0.16...v4.0.17) (2017-10-10) | ||
<a name="4.0.16"></a> | ||
@@ -7,0 +12,0 @@ ## [4.0.16](https://github.com/zerkalica/reactive-di/compare/v4.0.15...v4.0.16) (2017-09-27) |
{ | ||
"name": "reactive-di", | ||
"version": "4.0.16", | ||
"version": "4.0.17", | ||
"description": "Reactive dependency injection", | ||
@@ -64,5 +64,5 @@ "publishConfig": { | ||
"chokidar-cli": "^1.2.0", | ||
"flow-bin": "^0.55.0", | ||
"mocha": "^3.5.0", | ||
"rimraf": "^2.6.1", | ||
"flow-bin": "^0.56.0", | ||
"mocha": "^4.0.1", | ||
"rimraf": "^2.6.2", | ||
"rollup": "^0.48.2", | ||
@@ -72,9 +72,9 @@ "rollup-plugin-babel": "=3.0.0-alpha.17", | ||
"rollup-plugin-uglify": "^2.0.1", | ||
"sinon": "^3.2.1", | ||
"sinon": "^4.0.1", | ||
"standard-version": "^4.2.0", | ||
"uglify-es": "^3.0.28" | ||
"uglify-es": "^3.1.3" | ||
}, | ||
"dependencies": { | ||
"lom_atom": "^1.1.4" | ||
"lom_atom": "^2.0.0" | ||
} | ||
} |
@@ -11,2 +11,14 @@ import babel from 'rollup-plugin-babel' | ||
const pkg = JSON.parse(fs.readFileSync('./package.json')) | ||
const uglifyOpts = { | ||
warnings: true, | ||
compress: { | ||
dead_code: true, | ||
unused: true, | ||
toplevel: true, | ||
warnings: true | ||
}, | ||
mangle: { | ||
toplevel: true | ||
} | ||
} | ||
@@ -19,3 +31,3 @@ const commonConf = { | ||
babel(babelrc()) | ||
].concat(process.env.UGLIFY === '1' ? [uglify({}, minify)] : []), | ||
].concat(process.env.UGLIFY === '1' ? [uglify(uglifyOpts, minify)] : []), | ||
output: [ | ||
@@ -22,0 +34,0 @@ {file: pkg.module, format: 'es'}, |
// @flow | ||
import {mem, detached} from 'lom_atom' | ||
import {detached} from 'lom_atom' | ||
import type {NamesOf} from 'lom_atom' | ||
@@ -4,0 +4,0 @@ |
// @flow | ||
import {defaultContext, memkey} from 'lom_atom' | ||
import {memkey} from 'lom_atom' | ||
@@ -5,0 +5,0 @@ export type IArg = Function | {+[id: string]: Function} |
Sorry, the diff of this file is not supported yet
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
203348
2176
+ Addedlom_atom@2.0.10(transitive)
- Removedlom_atom@1.1.4(transitive)
Updatedlom_atom@^2.0.0