react-accessible-accordion
Advanced tools
Comparing version 2.4.2 to 2.4.3
@@ -8,2 +8,9 @@ # Changelog | ||
## [[v2.4.3]](https://github.com/springload/react-accessible-accordion/releases/tag/v2.4.3) | ||
### Fixed | ||
* Fixes issue with spacebar scrolling the page (see PR#99) | ||
* Fixes IE compatibility by replacing uses of Array.prototype.find. | ||
## [[v2.4.2]](https://github.com/springload/react-accessible-accordion/releases/tag/v2.4.2) | ||
@@ -13,3 +20,2 @@ | ||
* Emergency bug fix to remove asyc/await from the code (see PR#95) | ||
* Removes invalid test | ||
@@ -19,2 +25,6 @@ * Minor change to package.json to remove some redundant Jest config. | ||
### Fixed | ||
* Emergency bug fix to remove asyc/await from the code (see PR#95) | ||
## [[v2.4.1]](https://github.com/springload/react-accessible-accordion/releases/tag/v2.4.1) | ||
@@ -21,0 +31,0 @@ |
{ | ||
"name": "react-accessible-accordion", | ||
"version": "2.4.2", | ||
"version": "2.4.3", | ||
"description": "Accessible Accordion component for React", | ||
@@ -15,4 +15,4 @@ "main": "dist/umd/index.js", | ||
"build:css": "cp src/css/*.css dist", | ||
"build:clean": "rm -rf dist/*", | ||
"build:rollup": "NODE_ENV=production rollup -c", | ||
"build:clean": "mkdir dist || true & rm -rf dist/*", | ||
"build:rollup": "rollup -c", | ||
"build:flow": "flow-copy-source src dist/es -i \"**/*.spec.js\"", | ||
@@ -31,23 +31,2 @@ "build": "npm run build:clean && npm run build:css && npm run build:flow && npm run build:rollup", | ||
}, | ||
"babel": { | ||
"presets": [ | ||
[ | ||
"es2015", | ||
{ | ||
"modules": false | ||
} | ||
], | ||
"react", | ||
"stage-2" | ||
], | ||
"env": { | ||
"test": { | ||
"presets": [ | ||
"es2015", | ||
"react", | ||
"stage-2" | ||
] | ||
} | ||
} | ||
}, | ||
"jest": { | ||
@@ -97,3 +76,3 @@ "setupFiles": [ | ||
"babel-polyfill": "^6.26.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
@@ -100,0 +79,0 @@ "babel-preset-stage-2": "^6.24.1", |
@@ -18,2 +18,5 @@ import resolve from 'rollup-plugin-node-resolve'; | ||
plugins: [ | ||
replace({ | ||
'process.env.NODE_ENV': JSON.stringify('production'), | ||
}), | ||
resolve({ | ||
@@ -27,8 +30,4 @@ jsnext: true, | ||
commonjs(), | ||
replace({ | ||
exclude: 'node_modules/**', | ||
ENV: JSON.stringify(process.env.NODE_ENV || 'development'), | ||
}), | ||
], | ||
}, | ||
]; |
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
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
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
32
0
481913
3171