New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-accessible-accordion

Package Overview
Dependencies
Maintainers
4
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-accessible-accordion - npm Package Compare versions

Comparing version 2.4.2 to 2.4.3

.browserslistrc

12

CHANGELOG.md

@@ -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 @@

29

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc