Skip to content

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentaudebert committed Feb 21, 2018
1 parent 1a2e12c commit bbac593
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 18 additions & 9 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "react-accessible-accordion",
"version": "1.0.2",
"version": "2.0.0",
"description": "Accessible Accordion component for React",
"main": "dist/umd/index.js",
"jsnext:main": "dist/es/index.js",
Expand All @@ -16,10 +16,8 @@
"css": "cp src/react-accessible-accordion.css dist",
"build": "NODE_ENV=production rollup -c",
"start": "npm run js:watch",
"start-demo":
"webpack-dev-server --config ./webpack/webpack.config.demo.js",
"pages":
"rm -rf pages && cp -R demo pages && webpack --config=./webpack/webpack.config.pages.js",
"start-demo": "webpack-dev-server --config ./webpack/webpack.config.demo.js",
"pages": "rm -rf pages && cp -R demo pages && webpack --config=./webpack/webpack.config.pages.js",
"deploy": "npm run pages && ./bin/deploy.sh",
"prettier": "prettier **/*.js --write",
"prepublish": "npm run build"
Expand All @@ -41,13 +39,22 @@
],
"env": {
"test": {
"presets": ["es2015", "react", "stage-2"]
"presets": [
"es2015",
"react",
"stage-2"
]
}
}
},
"jest": {
"setupFiles": ["./src/setupTests.js"],
"testPathIgnorePatterns": ["/node_modules/", "/dist/"]
"setupFiles": [
"./src/setupTests.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"keywords": [
"react",
Expand All @@ -57,7 +64,9 @@
"accessible",
"accessibility"
],
"authors": ["Vincent Audebert <vincent@springload.co.nz>"],
"authors": [
"Vincent Audebert <vincent@springload.co.nz>"
],
"contributors": [
{
"name": "Mitch Ryan",
Expand Down

0 comments on commit bbac593

Please sign in to comment.