Skip to content

Commit

Permalink
v1.0.0-beta.43
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Apr 22, 2018
1 parent 679beb2 commit 6dfe738
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "material-ui-workspace",
"private": true,
"author": "Material-UI Team",
"version": "1.0.0-beta.42",
"version": "1.0.0-beta.43",
"description": "Material-UI's workspace package",
"keywords": [
"react",
Expand Down Expand Up @@ -48,9 +48,6 @@
"typescript": "tsc -p tsconfig.json",
"flow": "flow --show-all-errors",
"argos": "argos upload test/regressions/screenshots/chrome --token $ARGOS_TOKEN || true",
"version": "cd packages/material-ui && yarn build",
"release": "np --no-publish --any-branch",
"postrelease": "yarn docs:deploy && npm publish packages/material-ui/build --tag next",
"monorepo:release": "yarn lerna exec yarn build && ./node_modules/.bin/lerna publish --skip-npm"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/material-ui-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@material-ui/icons",
"private": false,
"author": "Material-UI Team",
"version": "1.0.0-beta.42",
"version": "1.0.0-beta.43",
"description": "Material Design Svg Icons converted to Material-UI React components.",
"main": "./src/index.js",
"keywords": [
Expand All @@ -26,14 +26,14 @@
"test:unit": "cd ../../ && ./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/mocha packages/material-ui-icons/test/index.test.js",
"test:watch": "yarn test:unit --watch",
"prebuild": "../../node_modules/.bin/rimraf build",
"src:icons": "../../node_modules/.bin/babel-node ./builder.js --output-dir ./src --svg-dir ../../node_modules/material-design-icons --glob '/**/production/*_24px.svg' --renameFilter ./filters/rename/material-design-icons.js",
"build:es2015": "../../node_modules/.bin/cross-env NODE_ENV=production ../../node_modules/.bin/babel ./src --out-dir ./build",
"build:es2015modules": "../../node_modules/.bin/cross-env NODE_ENV=production BABEL_ENV=modules ../../node_modules/.bin/babel ./src/index.js --out-file ./build/index.es.js",
"build:es": "../../node_modules/.bin/cross-env NODE_ENV=production BABEL_ENV=es ../../node_modules/.bin/babel ./src --out-dir ./build/es",
"build:copy-files": "../../node_modules/.bin/babel-node ./scripts/copy-files.js",
"build:icons": "../../node_modules/.bin/babel-node ./builder.js --output-dir ./src --svg-dir ../../node_modules/material-design-icons --glob '/**/production/*_24px.svg' --renameFilter ./filters/rename/material-design-icons.js",
"build:typings": "../../node_modules/.bin/babel-node ./scripts/create-typings.js",
"build": "yarn build:icons && yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:typings && yarn build:copy-files",
"version": "yarn build:copy-files && npm publish build"
"build": "yarn src:icons && yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:typings && yarn build:copy-files",
"version": "yarn build && npm publish build"
},
"peerDependencies": {
"material-ui": "^1.0.0-beta.16",
Expand Down
5 changes: 2 additions & 3 deletions packages/material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "material-ui",
"private": true,
"author": "Material-UI Team",
"version": "1.0.0-beta.42",
"version": "1.0.0-beta.43",
"description": "React components that implement Google's Material Design.",
"keywords": [
"react",
Expand All @@ -28,8 +28,7 @@
"build:umd:prod": "cross-env NODE_ENV=production webpack --config scripts/umd.webpack.config.js",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"build": "yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:umd:dev && yarn build:umd:prod && yarn build:copy-files",
"version": "yarn build",
"release": "np --no-publish --any-branch"
"version": "yarn build && npm publish build --tag next"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
Expand Down

0 comments on commit 6dfe738

Please sign in to comment.