react-faux-dom
Advanced tools
Comparing version 2.3.0 to 2.4.0
@@ -0,4 +1,10 @@ | ||
# 2.4.0 | ||
* Merge [#37](https://github.com/Olical/react-faux-dom/pull/37) - Replace lodash dependencies with in house functions | ||
* Throw when `querySelector(All)` does not receive an argument | ||
* Return null when `querySelector` does not find a match | ||
# 2.3.0 | ||
* Merge [#38](https://github.com/Olical/react-faux-dom/pull/38#issuecomment-189248845) - Fix vendor prefixes for already camelCased style names | ||
* Merge [#38](https://github.com/Olical/react-faux-dom/pull/38) - Fix vendor prefixes for already camelCased style names | ||
@@ -5,0 +11,0 @@ # 2.2.0 |
{ | ||
"name": "react-faux-dom", | ||
"version": "2.3.0", | ||
"version": "2.4.0", | ||
"description": "DOM like data structure to be mutated by D3 et al, then rendered to React elements", | ||
"main": "src/ReactFauxDOM.js", | ||
"main": "lib/ReactFauxDOM.js", | ||
"scripts": { | ||
@@ -30,17 +30,11 @@ "test": "standard && tape './test/**/*.js' | faucet" | ||
"devDependencies": { | ||
"d3": "^3.5.6", | ||
"d3": "^3.5.16", | ||
"faucet": "0.0.1", | ||
"nodemon": "^1.7.1", | ||
"react": "^0.14.0", | ||
"sinon": "^1.17.1", | ||
"standard": "^5.1.0", | ||
"tape": "^4.2.1" | ||
"nodemon": "^1.9.1", | ||
"react": "^0.14.7", | ||
"sinon": "^1.17.3", | ||
"standard": "^6.0.7", | ||
"tape": "^4.4.0" | ||
}, | ||
"dependencies": { | ||
"lodash.assign": "^3.2.0", | ||
"lodash.camelcase": "^3.0.1", | ||
"lodash.clone": "^3.0.3", | ||
"lodash.filter": "^3.1.1", | ||
"lodash.mapvalues": "^3.0.1", | ||
"lodash.some": "^3.2.3", | ||
"query-selector": "^1.0.9", | ||
@@ -47,0 +41,0 @@ "style-attr": "^1.0.1" |
var test = require('tape') | ||
var mk = require('./utils/mk') | ||
var mk = require('./test-utils/mk') | ||
@@ -4,0 +4,0 @@ test('modify properties', function (t) { |
var test = require('tape') | ||
var ReactFauxDOM = require('..') | ||
var Element = require('../src/Element') | ||
var Element = require('../lib/Element') | ||
@@ -5,0 +5,0 @@ test('has a create method', function (t) { |
var d3 = require('d3') | ||
var test = require('tape') | ||
var sinon = require('sinon') | ||
var mk = require('./utils/mk') | ||
var mk = require('./test-utils/mk') | ||
@@ -6,0 +6,0 @@ var lastEvent |
var test = require('tape') | ||
var mk = require('./utils/mk') | ||
var mk = require('./test-utils/mk') | ||
@@ -4,0 +4,0 @@ test('simple node', function (t) { |
var test = require('tape') | ||
var mk = require('./utils/mk') | ||
var mk = require('./test-utils/mk') | ||
@@ -4,0 +4,0 @@ test('simple style string sets the property', function (t) { |
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
37525
3
31
899
1
- Removedlodash.assign@^3.2.0
- Removedlodash.camelcase@^3.0.1
- Removedlodash.clone@^3.0.3
- Removedlodash.filter@^3.1.1
- Removedlodash.mapvalues@^3.0.1
- Removedlodash.some@^3.2.3
- Removedlodash._arraycopy@3.0.0(transitive)
- Removedlodash._arrayeach@3.0.0(transitive)
- Removedlodash._arrayfilter@3.0.0(transitive)
- Removedlodash._baseassign@3.2.0(transitive)
- Removedlodash._basecallback@3.3.1(transitive)
- Removedlodash._baseclone@3.3.0(transitive)
- Removedlodash._basecopy@3.0.1(transitive)
- Removedlodash._baseeach@3.0.4(transitive)
- Removedlodash._basefilter@3.0.0(transitive)
- Removedlodash._basefor@3.0.3(transitive)
- Removedlodash._baseisequal@3.0.7(transitive)
- Removedlodash._bindcallback@3.0.1(transitive)
- Removedlodash._createassigner@3.1.1(transitive)
- Removedlodash._createcompounder@3.0.0(transitive)
- Removedlodash._getnative@3.9.1(transitive)
- Removedlodash._isiterateecall@3.0.9(transitive)
- Removedlodash._root@3.0.1(transitive)
- Removedlodash.assign@3.2.0(transitive)
- Removedlodash.camelcase@3.0.1(transitive)
- Removedlodash.clone@3.0.3(transitive)
- Removedlodash.deburr@3.2.0(transitive)
- Removedlodash.filter@3.1.1(transitive)
- Removedlodash.isarguments@3.1.0(transitive)
- Removedlodash.isarray@3.0.4(transitive)
- Removedlodash.istypedarray@3.0.6(transitive)
- Removedlodash.keys@3.1.2(transitive)
- Removedlodash.mapvalues@3.0.1(transitive)
- Removedlodash.pairs@3.0.1(transitive)
- Removedlodash.restparam@3.6.1(transitive)
- Removedlodash.some@3.2.3(transitive)
- Removedlodash.words@3.2.0(transitive)