Skip to content

Commit

Permalink
Merge pull request #2527 from dcos/jgieseke/bump-reactjs-components-0…
Browse files Browse the repository at this point in the history
…-17-0

chore(reactjs-components): bump 0.17.1
  • Loading branch information
Andrew Hoskins authored Nov 29, 2017
2 parents a9ba7da + 710a8e2 commit d1a90bb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 21 deletions.
8 changes: 4 additions & 4 deletions npm-shrinkwrap.json

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

42 changes: 25 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,14 @@
"node": "4.4.x",
"npm": "3.9.x"
},
"browserslist": [
"last 2 versions",
"ie 11"
],
"browserslist": ["last 2 versions", "ie 11"],
"config": {
"port": 4200,
"externalplugins": ""
},
"dependencies": {
"@dcos/mesos-client": "0.1.7",
"@dcos/http-service": "0.2.0",
"@dcos/mesos-client": "0.1.7",
"babel-polyfill": "6.23.0",
"browser-info": "0.4.0",
"classnames": "2.2.3",
Expand Down Expand Up @@ -63,7 +60,7 @@
"react-redux": "4.4.6",
"react-router": "2.8.1",
"react-transition-group": "1.2.1",
"reactjs-components": "0.16.0-beta.27",
"reactjs-components": "0.17.1",
"reactjs-mixin": "0.0.2",
"redux": "3.3.1",
"reflect-metadata": "0.1.10",
Expand Down Expand Up @@ -138,25 +135,36 @@
"scripts": {
"check-env": "./scripts/validate-engine-versions",
"clean": "rm -rf dist",
"shrinkwrap": "npm shrinkwrap --dev && ./node_modules/.bin/gulp fixShrinkwrap",
"shrinkwrap":
"npm shrinkwrap --dev && ./node_modules/.bin/gulp fixShrinkwrap",
"preinstall": "./scripts/pre-install",
"prebuild-assets": "./node_modules/.bin/gulp checkDependencies",
"build-assets": "npm run clean && NODE_ENV=production webpack --config ./webpack/webpack.production.babel.js",
"build": "npm run lint && npm test && npm run build-assets && npm run validate-build",
"build-with-external-plugins": "npm run lint && npm run lint-plugins && npm test && npm run build-assets",
"build-assets":
"npm run clean && NODE_ENV=production webpack --config ./webpack/webpack.production.babel.js",
"build":
"npm run lint && npm test && npm run build-assets && npm run validate-build",
"build-with-external-plugins":
"npm run lint && npm run lint-plugins && npm test && npm run build-assets",
"lint": "npm run stylelint && npm run eslint",
"eslint": "bash -c 'opts=$@ ; set -f; if [[ $# -lt 1 ]]; then opts=\"{src/js,plugins,packages}/**/*.js\"; fi ; eslint --quiet ${opts}' 0",
"stylelint": "bash -c 'opts=$@ ; set -f; if [[ $# -lt 1 ]]; then opts=\"{src/styles,plugins,packages}/**/*.less\"; fi ; stylelint ${opts}' 0",
"eslint":
"bash -c 'opts=$@ ; set -f; if [[ $# -lt 1 ]]; then opts=\"{src/js,plugins,packages}/**/*.js\"; fi ; eslint --quiet ${opts}' 0",
"stylelint":
"bash -c 'opts=$@ ; set -f; if [[ $# -lt 1 ]]; then opts=\"{src/styles,plugins,packages}/**/*.less\"; fi ; stylelint ${opts}' 0",
"conventional-changelog-lint": "conventional-changelog-lint",
"lint-plugins": "PLUGINS=$npm_config_externalplugins; npm run eslint -- \"$PLUGINS/**/*.js\" && npm run stylelint -- \"$PLUGINS/**/*.less\"",
"lint-plugins":
"PLUGINS=$npm_config_externalplugins; npm run eslint -- \"$PLUGINS/**/*.js\" && npm run stylelint -- \"$PLUGINS/**/*.less\"",
"prebuild": "./scripts/validate-tests",
"serve": "npm run build-assets && ./node_modules/.bin/gulp serve",
"serve-notify": "export NOTIFY=true && npm run serve",
"scaffold": "./node_modules/.bin/gulp ensureConfig && ./node_modules/.bin/gulp ensureDevProxy",
"start": "npm run check-env && NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.babel.js --hot --progress --colors --content-base ./build --host 0.0.0.0 --port $npm_package_config_port",
"test": "node jest/gen-config.js && NODE_PATH=node_modules jest --config=jest/config.json --no-cache",
"scaffold":
"./node_modules/.bin/gulp ensureConfig && ./node_modules/.bin/gulp ensureDevProxy",
"start":
"npm run check-env && NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.babel.js --hot --progress --colors --content-base ./build --host 0.0.0.0 --port $npm_package_config_port",
"test":
"node jest/gen-config.js && NODE_PATH=node_modules jest --config=jest/config.json --no-cache",
"test:watch": "npm test -- --watch",
"testing": "NODE_ENV=testing webpack-dev-server --config ./webpack/webpack.dev.babel.js --progress --colors --content-base ./build --host 0.0.0.0 --port $npm_package_config_port",
"testing":
"NODE_ENV=testing webpack-dev-server --config ./webpack/webpack.dev.babel.js --progress --colors --content-base ./build --host 0.0.0.0 --port $npm_package_config_port",
"validate-build": "scripts/validate-build dist/*.js"
},
"jest-webpack-alias": {
Expand Down

0 comments on commit d1a90bb

Please sign in to comment.