Revert "[ember] update ember ergonomics to not require any manual setup"

This commit is contained in:
Michael Shilman 2018-10-25 16:37:58 +08:00 committed by GitHub
parent b3417c8134
commit a19ab25913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 48 additions and 9 deletions

View File

@ -37,20 +37,50 @@ npm init
Then add the following NPM script to your package json in order to start the storybook later in this guide:
> In order for your storybook to run properly be sure to be either run `ember serve` or `ember build` before running any storybook commands. Running `ember serve` before storybook will enable live reloading.
> In order for your storybook to run properly be sure to be either run `ember serve` or `ember build` before running any storybook commands.
```json
{
"scripts": {
"build-storybook": "ember build & build-storybook -p 9001 -s dist",
"storybook": "ember serve & start-storybook -p 9001 -s dist"
"storybook": "start-storybook -p 9001 -s dist"
}
}
```
## Setup environment
Your environment will be preconfigured using `ember-cli-storybook`. This will add a `preview-head.html`, a `.env` and make sure that your environment is configured to work with live reload.
### Adding preview-head.html
In order for storybook to register your ember application you must add the following file to `.storybook/preview-head.html`
> These scripts may not contain everything you need, a good point of reference is to look at what is in the head tag in your applications `dist/index.html` file when you build.
```
<meta name="{ember-app-name}/config/environment" content="%7B%22modulePrefix%22%3A%22{ember-app-name}%22%2C%22environment%22%3A%22test%22%2C%22rootURL%22%3A%22/%22%2C%22locationType%22%3A%22auto%22%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22{ember-app-name}%22%2C%22version%22%3A%224.0.0-alpha.23+4f61a2fb%22%7D%7D" />
<link integrity="" rel="stylesheet" href="./assets/vendor.css">
<link integrity="" rel="stylesheet" href="./assets/{ember-app-name}.css">
<script src="./assets/vendor.js"></script>
<script>
runningTests = true;
</script>
<script src="./assets/{ember-app-name}.js"></script>
```
> Adding the runningTests script is extremely important don't forget to add this as it will result in your application binding multiple times.
Substitute `ember-app-name` with the name of your ember application.
> This is found by going to `package.json` and referencing the name field
### Adding .env
A file named `.env` is needed in the root directory with the following contents:
```
STORYBOOK_NAME={ember-app-name}
```
## Create the config file

View File

@ -1 +1,2 @@
STORYBOOK_NAME=ember-example
STORYBOOK_EXAMPLE_APP=true
STORYBOOK_NAME=ember-example

View File

@ -13,5 +13,3 @@ build
.DS_Store
npm-debug.log
tmp
.env
.storybook/preview-head.html

View File

@ -0,0 +1,10 @@
<meta name="ember-example/config/environment" content="%7B%22modulePrefix%22%3A%22ember-example%22%2C%22environment%22%3A%22test%22%2C%22rootURL%22%3A%22/%22%2C%22locationType%22%3A%22auto%22%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22ember-example%22%2C%22version%22%3A%224.0.0-alpha.23+4f61a2fb%22%7D%7D" />
<link integrity="" rel="stylesheet" href="./assets/vendor.css">
<link integrity="" rel="stylesheet" href="./assets/ember-example.css">
<script src="./assets/vendor.js"></script>
<script>
runningTests = true;
</script>
<script src="./assets/ember-example.js"></script>

View File

@ -4,9 +4,9 @@
"private": true,
"scripts": {
"build": "ember build",
"build-storybook": "yarn build & cp -r public/* dist & build-storybook -s dist",
"build-storybook": "yarn build && cp -r public/* dist && build-storybook -s dist",
"dev": "ember serve",
"storybook": "yarn dev --port 4222 & start-storybook -p 9009 -s dist, public"
"storybook": "yarn build && start-storybook -p 9009 -s dist, public"
},
"devDependencies": {
"@babel/core": "^7.1.2",