Skip to content

Commit

Permalink
MOVE & RENAME and storyshots && CHANGE “React Storybook” > “Storybook”
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed May 17, 2017
1 parent 308b160 commit 3319765
Show file tree
Hide file tree
Showing 38 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to React Storybook
# Contributing to Storybook

Thanks for your interest in improving Storybook! We are a community-driven project and welcome contributions of all kinds: from discussion to documentation to bugfixes to feature improvements.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It allows you to browse a component library, view the different states of each c

## Intro

![React Storybook Screenshot](app/react/docs/demo.gif)
![Storybook Screenshot](app/react/docs/demo.gif)

Storybook runs outside of your app. This allows you to develop UI components in isolation, which can improve component reuse, testability, and development speed. You can build quickly without having to worry about application-specific dependencies.

Expand Down
2 changes: 1 addition & 1 deletion addons/centered/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@storybook/addon-centered",
"version": "1.1.2",
"description": "React Storybook decorator to center components",
"description": "Storybook decorator to center components",
"main": "build/index.js",
"scripts": {
"prepublish": "babel src --out-dir build"
Expand Down
2 changes: 1 addition & 1 deletion addons/info/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ See: [#12](https://github.com/kadirahq/react-storybook-addon-info/issues/12)

### v3.0.0

* Add the version which works as an React Storybook addon.
* Add the version which works as an Storybook addon.
2 changes: 1 addition & 1 deletion addons/info/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@storybook/addon-info",
"version": "3.4.0",
"description": "A React Storybook addon to show additional information for your stories.",
"description": "A Storybook addon to show additional information for your stories.",
"repository": {
"type": "git",
"url": "git+https://github.com/storybooks/storybook.git"
Expand Down
2 changes: 1 addition & 1 deletion addons/knobs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@storybook/addon-knobs",
"version": "1.7.1",
"description": "React Storybook Addon Prop Editor Component",
"description": "Storybook Addon Prop Editor Component",
"repository": {
"type": "git",
"url": "git+https://github.com/storybooks/storybook.git"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/storyshots/README.md → addons/storyshots/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To use StoryShots, you must use your existing Storybook stories as the input for
Add the following module into your app.

```sh
npm install -save-dev storyshots
npm install -save-dev @storybook/addon-storyshots
```

## Configure your app for Jest
Expand Down
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "storyshots",
"name": "@storybook/addon-storyshots",
"version": "3.2.2",
"description": "StoryShots - Jest Snapshot Testing for React Storybook.",
"description": "StoryShots is a Jest Snapshot Testing Addon for Storybook.",
"repository": {
"type": "git",
"url": "https://github.com/storybooks/storyshots.git"
"url": "https://github.com/storybooks/storybook.git"
},
"license": "MIT",
"main": "dist/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function testStorySnapshots(options = {}) {
require.requireActual(configPath);
} else {
throw new Error(
'storyshots is intended only to be used with react storybook or react native storybook',
'storyshots is intended only to be used with storybook',
);
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class Welcome extends React.Component {
Have a look at the
{' '}
<a style={styles.link} href="https://github.com/storybooks/storybook" target="_blank">
React Storybook
Storybook for React
</a>
{' '}
repo for more information.
Expand Down
2 changes: 1 addition & 1 deletion app/react-native/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

With Storybook for React Native you can design and develop individual React Native components without running your app.

![React Storybook Screenshot](docs/assets/readme/screenshot.png)
![Storybook Screenshot](docs/assets/readme/screenshot.png)

For more information visit: [storybooks.js.org](https://storybooks.js.org)

Expand Down
2 changes: 1 addition & 1 deletion app/react-native/src/server/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function loadBabelConfig(babelConfigPath) {
}

// `baseConfig` is a webpack configuration bundled with storybook.
// React Storybook will look in the `configDir` directory
// Storybook will look in the `configDir` directory
// (inside working directory) if a config path is not provided.
export default function(configType, baseConfig, projectDir, configDir) {
const config = baseConfig;
Expand Down
2 changes: 1 addition & 1 deletion app/react-native/src/server/index.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function(publicPath, options) {
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>React Storybook</title>
<title>Storybook for React</title>
<style>
/*
When resizing panels, the drag event breaks if the cursor
Expand Down
8 changes: 4 additions & 4 deletions app/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ This will fix issues like [#347](https://github.com/storybooks/react-storybook/i
Add support for the addon API. See [PR346](https://github.com/storybooks/react-storybook/pull/346).

Here after we are using most of the features including actions,links as plugins.
So, this introduced a huge area to add customizations to React Storybook.
So, this introduced a huge area to add customizations to Storybook.

Unfortunately, as of this version, there are no docs for this feature. But, you can have a look at these addons:

Expand All @@ -408,7 +408,7 @@ Have a look at [here](https://github.com/storybooks/react-storybook/blob/master/
### v2.0.0
01-August-2016

This is the starting of the next major version of React Storybook. This version is almost compatible with `v1.x.x` but defaults have been changes as discussed below. That's why we are starting out a new version.
This is the starting of the next major version of Storybook. This version is almost compatible with `v1.x.x` but defaults have been changes as discussed below. That's why we are starting out a new version.

* Update defaults to match create-react-app. [PR342](https://github.com/storybooks/react-storybook/pull/342). Here are the notable changes:
* Add postcss based CSS loader.
Expand Down Expand Up @@ -482,7 +482,7 @@ This is the starting of the next major version of React Storybook. This version

### v1.33.0

* Introduce an [extension API](https://github.com/storybooks/react-storybook/blob/master/docs/extensions.md) for React Storybook. See: [PR258](https://github.com/storybooks/react-storybook/pull/258)
* Introduce an [extension API](https://github.com/storybooks/react-storybook/blob/master/docs/extensions.md) for Storybook. See: [PR258](https://github.com/storybooks/react-storybook/pull/258)

### v1.32.1

Expand Down Expand Up @@ -621,7 +621,7 @@ This is the starting of the next major version of React Storybook. This version
### v1.18.0
26-April-2016

* Link React Storybook menu to the repo. See: [PR137](https://github.com/storybooks/react-storybook/pull/137)
* Link Storybook menu to the repo. See: [PR137](https://github.com/storybooks/react-storybook/pull/137)
* Implement keyboard shortcuts and fuzzy search. See: [PR141](https://github.com/storybooks/react-storybook/pull/141)

### v1.17.2
Expand Down
2 changes: 1 addition & 1 deletion app/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Storybook for React is a UI development environment for your React components.
With it, you can visualize different states of your UI components and develop them interactively.

![React Storybook Screenshot](docs/demo.gif)
![Storybook Screenshot](docs/demo.gif)

Storybook runs outside of your app.
So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
Expand Down
2 changes: 1 addition & 1 deletion app/react/ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Short Term

* Addon API and addons
* A clear guide to hack React Storybook
* A clear guide to hack Storybook
* React Native Support

### Long Term
Expand Down
2 changes: 1 addition & 1 deletion app/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@storybook/react",
"version": "2.35.3",
"description": "React Storybook: Isolate React Component Development with Hot Reloading.",
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
"license": "MIT",
"main": "dist/client/index.js",
"typings": "./config/storybook.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion app/react/src/server/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import loadBabelConfig from './babel_config';
const logger = console;

// `baseConfig` is a webpack configuration bundled with storybook.
// React Storybook will look in the `configDir` directory
// Storybook will look in the `configDir` directory
// (inside working directory) if a config path is not provided.
export default function(configType, baseConfig, configDir) {
const config = baseConfig;
Expand Down
2 changes: 1 addition & 1 deletion app/react/src/server/iframe.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function(data) {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
}
</script>
<title>React Storybook</title>
<title>Storybook</title>
${headHtml}
${previewCssTag}
</head>
Expand Down
2 changes: 1 addition & 1 deletion app/react/src/server/index.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function(data) {
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="storybook-version" content="${version}">
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<title>React Storybook</title>
<title>Storybook</title>
<style>
/*
When resizing panels, the drag event breaks if the cursor
Expand Down
2 changes: 1 addition & 1 deletion app/react/src/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ server.listen(...listenAddr, error => {
throw error;
} else {
const address = `http://${program.host || 'localhost'}:${program.port}/`;
logger.info(`\nReact Storybook started on => ${chalk.cyan(address)}\n`);
logger.info(`\Storybook started on => ${chalk.cyan(address)}\n`);
}
});
2 changes: 1 addition & 1 deletion lib/cli/generators/METEOR/template/.stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default class Welcome extends React.Component {
<p>
This is just one thing you can do with Storybook.
<br/>
Have a look at the <a style={styles.link} href="https://github.com/storybooks/storybook" target="_blank">React Storybook</a> repo for more information.
Have a look at the <a style={styles.link} href="https://github.com/storybooks/storybook" target="_blank">Storybook</a> repo for more information.
</p>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/generators/REACT/template/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class Welcome extends React.Component {
Have a look at the
{' '}
<a style={styles.link} href="https://github.com/storybooks/storybook" target="_blank">
React Storybook
Storybook
</a>
{' '}
repo for more information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class Welcome extends React.Component {
Have a look at the
{' '}
<a style={styles.link} href="https://github.com/storybooks/storybook" target="_blank">
React Storybook
Storybook
</a>
{' '}
repo for more information.
Expand Down
4 changes: 2 additions & 2 deletions lib/ui/src/modules/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export default {
actions,
defaultState: {
uiOptions: {
name: 'REACT STORYBOOK',
url: 'https://github.com/storybooks/react-storybook',
name: 'STORYBOOK',
url: 'https://github.com/storybooks/storybook',
sortStoriesByKind: false,
},
},
Expand Down

0 comments on commit 3319765

Please sign in to comment.