Skip to content

Commit f7099e1

Browse files
committed
added storybook
1 parent 1f36e71 commit f7099e1

File tree

10 files changed

+11472
-1896
lines changed

10 files changed

+11472
-1896
lines changed

.eslintignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
dist
22

3-
node_modules
3+
node_modules
4+
5+
storybook-static

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
dist
22

3-
node_modules
3+
node_modules
4+
5+
storybook-static

.prettierignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
dist
1+
/dist
22

3-
node_modules
3+
/node_modules
44

5-
*.html
5+
*.html
6+
7+
/storybook-static

examples/cdn/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ DOME for CSS Loaders hosted on CDN using UMD Module.
22

33
# To run:
44

5-
npm run serve
5+
npx serve

package-lock.json

+11,423-1,886
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
"prebuild": "rimraf dist",
1010
"build": "rollup -c",
1111
"format": "eslint **/*.js && prettier **/*.js",
12-
"format:fix": "eslint **/*.js --fix && prettier **/*.js --write"
12+
"format:fix": "eslint **/*.js --fix && prettier **/*.js --write",
13+
"storybook": "start-storybook -p 9001 -c storybook",
14+
"storybook:build": "build-storybook -c storybook"
1315
},
1416
"husky": {
1517
"hooks": {
@@ -24,7 +26,7 @@
2426
},
2527
"repository": {
2628
"type": "git",
27-
"url": "git+https://github.com/amareshsm/react-spinner-css.git"
29+
"url": "https://github.com/amareshsm/react-spinner-css.git"
2830
},
2931
"keywords": [
3032
"react",
@@ -42,6 +44,9 @@
4244
"@babel/preset-env": "^7.10.4",
4345
"@babel/preset-react": "^7.10.4",
4446
"@rollup/plugin-babel": "^5.1.0",
47+
"@storybook/addon-options": "^5.3.19",
48+
"@storybook/react": "^5.3.19",
49+
"babel-loader": "^8.1.0",
4550
"eslint": "^7.5.0",
4651
"eslint-config-prettier": "^6.11.0",
4752
"eslint-config-standard": "^14.1.1",
@@ -53,6 +58,8 @@
5358
"eslint-plugin-standard": "^4.0.1",
5459
"husky": "^4.2.5",
5560
"lint-staged": "^10.2.11",
61+
"react": "^16.13.1",
62+
"react-dom": "^16.13.1",
5663
"rimraf": "^3.0.2",
5764
"rollup": "^2.22.2",
5865
"rollup-plugin-node-resolve": "^5.2.0",
@@ -68,4 +75,4 @@
6875
"engines": {
6976
"node": ">=8"
7077
}
71-
}
78+
}

src/Components/Loader3/Loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import styles from './style.css'
33
const Loader3 = (props) => (
44
<>
5-
<styles>{styles}</styles>
5+
<style>{styles}</style>
66
<div className="loader3">
77
<div className="loader-ring">
88
<div></div>

stories/addons.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '@storybook/addon-options/register'

stories/index.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import React from 'react'
2+
import { storiesOf } from '@storybook/react'
3+
import { Loader1, Loader2, Loader3 } from '../src'
4+
console.log(Loader1)
5+
storiesOf('Loaders', module)
6+
.add('Loader 1 ', () => <Loader1 />)
7+
.add('Loader 2', () => <Loader2 />)
8+
.add('Loader 3', () => <Loader3 />)

storybook/config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { configure, addDecorator } from '@storybook/react'
2+
import { withOptions } from '@storybook/addon-options'
3+
import packageJson from '../package.json'
4+
5+
function loadStories() {
6+
require('../stories/index.js')
7+
}
8+
9+
addDecorator(
10+
withOptions({
11+
name: 'React CSS Loaders',
12+
url: packageJson.repository.url,
13+
showAddonsPanel: false,
14+
}),
15+
)
16+
17+
configure(loadStories, module)

0 commit comments

Comments
 (0)