Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
Merge branch 'dev' of github.com:pedronauck/docz into chore/dataserve…
Browse files Browse the repository at this point in the history
…r-refac

* 'dev' of github.com:pedronauck/docz:
  feat(docz-theme-default): add edit button for document (#180)
  fix(docz-theme-default): not found typo (#173)
  feat(docz-core): support env files to set configuration (#171)
  chore(docz): add entry prop on document wrapper
  feat(docz-core): add webpack-serve-overlay as error overlay
  feat(docz-plugin-svgr): add initial version of plugin
  fix(docz-core): remove babel plugin/presets when needed
  chore(docz): use react-loadable instead of loadable-components
  chore(docz-theme-default): some Handle adjustments
  chore: update dependencies
  fix(docz-theme-default): hot reload on fullscreen mode
  v0.8.0
  chore(docz-theme-default): some colors adjustments
  feat(docz-theme-default): add html output on playground
  chore(docz): remove __rawCode from playground
  chore(docz-theme-default): change text color of light mode
  fix(docz-theme-default): get fullscreen from localstorage
  fix(docz): humanize array type of flow (fix #167)
  fix: change link on readme (#168)
  • Loading branch information
pedronauck committed Jul 31, 2018
2 parents 69d6c9a + e125a4f commit a9e110a
Show file tree
Hide file tree
Showing 76 changed files with 1,991 additions and 516 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)


### Bug Fixes

* change link on readme ([#168](https://github.com/pedronauck/docz/issues/168)) ([30a9390](https://github.com/pedronauck/docz/commit/30a9390))
* **docz:** humanize array type of flow (fix [#167](https://github.com/pedronauck/docz/issues/167)) ([18798bc](https://github.com/pedronauck/docz/commit/18798bc))
* **docz-theme-default:** get fullscreen from localstorage ([0f8aa56](https://github.com/pedronauck/docz/commit/0f8aa56))


### Features

* **docz-theme-default:** add html output on playground ([be7a749](https://github.com/pedronauck/docz/commit/be7a749))




<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ To break barriers and facilitate the creation of tools was the purpose that **do

## 🎛 &nbsp; Plugins

- **[docz-plugin-babel6](https://github.com/pedronauck/docz/blob/master/packages/docz-plugin-babel6):** Use this plugin to use older babel version
- **[docz-plugin-css](https://github.com/pedronauck/docz/blob/master/packages/docz-plugin-css):** Plugin to parse css files inside your documents
- **[babel6](https://github.com/pedronauck/docz/blob/master/packages/docz-plugin-babel6):** Use this plugin to use older babel version
- **[css](https://github.com/pedronauck/docz/blob/master/packages/docz-plugin-css):** Parse css files inside your documents
- **[svgr](https://github.com/pedronauck/docz/blob/master/packages/docz-plugin-css):** Allow you to parse svg using svgr

## 🚧 &nbsp; Warning!

Expand Down Expand Up @@ -145,7 +146,7 @@ If you need some help you can chat with us on [our Discord server](https://disco

This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].

<a href="graphs/contributors"><img src="https://opencollective.com/docz/contributors.svg?width=890&button=false" /></a>
<a href="https://github.com/pedronauck/docz/graphs/contributors"><img src="https://opencollective.com/docz/contributors.svg?width=890&button=false" /></a>

### 🙏🏻 &nbsp; Backers

Expand Down
8 changes: 8 additions & 0 deletions examples/babel6/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-babel6

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
8 changes: 4 additions & 4 deletions examples/babel6/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "docz-example-babel6",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"emotion": "^9.2.6",
"prop-types": "^15.6.2",
"react": "^16.4.1",
Expand All @@ -17,6 +17,6 @@
},
"devDependencies": {
"babel-plugin-emotion": "^9.2.6",
"docz-plugin-babel6": "^0.7.0"
"docz-plugin-babel6": "^0.8.0"
}
}
8 changes: 8 additions & 0 deletions examples/basic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-basic

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
6 changes: 3 additions & 3 deletions examples/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "docz-example-basic",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"emotion": "^9.2.6",
"prop-types": "^15.6.2",
"react": "^16.4.1",
Expand Down
8 changes: 8 additions & 0 deletions examples/css-less/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-css-less

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
8 changes: 4 additions & 4 deletions examples/css-less/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "docz-example-css-less",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"classnames": "^2.2.6",
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"docz-plugin-css": "^0.7.1"
"docz-plugin-css": "^0.8.0"
}
}
8 changes: 8 additions & 0 deletions examples/css-postcss/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-css-postcss

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
8 changes: 4 additions & 4 deletions examples/css-postcss/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "docz-example-css-postcss",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"classnames": "^2.2.6",
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"docz-plugin-css": "^0.7.1"
"docz-plugin-css": "^0.8.0"
}
}
8 changes: 8 additions & 0 deletions examples/css-sass/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-css-sass

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
8 changes: 4 additions & 4 deletions examples/css-sass/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "docz-example-css-sass",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"classnames": "^2.2.6",
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"docz-plugin-css": "^0.7.1"
"docz-plugin-css": "^0.8.0"
}
}
8 changes: 8 additions & 0 deletions examples/css-stylus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-css-stylus

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
8 changes: 4 additions & 4 deletions examples/css-stylus/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "docz-example-css-stylus",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"classnames": "^2.2.6",
"docz": "^0.7.1",
"docz-core": "^0.7.0",
"docz": "^0.8.0",
"docz-core": "^0.8.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"docz-plugin-css": "^0.7.1"
"docz-plugin-css": "^0.8.0"
}
}
8 changes: 8 additions & 0 deletions examples/flow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-flow

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
6 changes: 3 additions & 3 deletions examples/flow/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "docz-example-flow",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"@babel/preset-flow": "^7.0.0-beta.54",
"docz": "^0.7.1",
"@babel/preset-flow": "^7.0.0-beta.55",
"docz": "^0.8.0",
"emotion": "^9.2.6",
"prop-types": "^15.6.2",
"react": "^16.4.1",
Expand Down
3 changes: 1 addition & 2 deletions examples/flow/src/components/Alert.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ import { Alert } from './Alert'
return (
<Alert>{message}</Alert>
)

}}
}}
</Playground>
8 changes: 8 additions & 0 deletions examples/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-example-typescript

<a name="0.7.1"></a>
## [0.7.1](https://github.com/pedronauck/docz/compare/v0.7.0...v0.7.1) (2018-07-24)

Expand Down
4 changes: 2 additions & 2 deletions examples/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "docz-example-typescript",
"version": "0.7.1",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build"
},
"dependencies": {
"docz": "^0.7.1",
"docz": "^0.8.0",
"emotion": "^9.2.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/**/*"
],
"version": "0.7.1",
"version": "0.8.0",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"libundler": "^1.7.1",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"prettier": "^1.14.0",
"trash-cli": "^1.4.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/docz-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.8.0"></a>
# [0.8.0](https://github.com/pedronauck/docz/compare/v0.7.1...v0.8.0) (2018-07-28)




**Note:** Version bump only for package docz-core

<a name="0.7.0"></a>
# [0.7.0](https://github.com/pedronauck/docz/compare/v0.6.2...v0.7.0) (2018-07-23)

Expand Down
Loading

0 comments on commit a9e110a

Please sign in to comment.