├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .size-limit.js ├── .size.json ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── __fixtures__ │ ├── babel │ │ ├── story │ │ │ ├── actual.js │ │ │ ├── expected.js │ │ │ └── storybook.include.js │ │ └── storybook.include.ts │ └── storybook.include.ts ├── babel.spec.ts ├── preset.spec.ts └── wrap.spec.ts ├── assets ├── logo.png └── logo.svg ├── babel └── package.json ├── jest.config.js ├── package.json ├── preset-entry └── package.json ├── preset.js ├── src ├── babel.ts ├── index.ts ├── library.ts ├── preset.ts └── types.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | __fixtures__ -------------------------------------------------------------------------------- /.size-limit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/.size-limit.js -------------------------------------------------------------------------------- /.size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/.size.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/babel/story/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/__tests__/__fixtures__/babel/story/actual.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/babel/story/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/__tests__/__fixtures__/babel/story/expected.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/babel/story/storybook.include.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/babel/storybook.include.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/storybook.include.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/babel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/__tests__/babel.spec.ts -------------------------------------------------------------------------------- /__tests__/preset.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/__tests__/preset.spec.ts -------------------------------------------------------------------------------- /__tests__/wrap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/__tests__/wrap.spec.ts -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /babel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/babel/package.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/package.json -------------------------------------------------------------------------------- /preset-entry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/preset-entry/package.json -------------------------------------------------------------------------------- /preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./preset-entry'); 2 | -------------------------------------------------------------------------------- /src/babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/src/babel.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/src/library.ts -------------------------------------------------------------------------------- /src/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/src/preset.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/storybook-include/HEAD/yarn.lock --------------------------------------------------------------------------------