CLEANUP & FIX types in package.json

This commit is contained in:
Norbert de Langen 2019-07-26 19:56:24 +02:00
parent 5b1374717e
commit 04c5f5b96d
3 changed files with 1 additions and 101 deletions

View File

@ -16,7 +16,7 @@
},
"license": "MIT",
"main": "dist/client/index.js",
"jsnext:main": "src/client/index.js",
"types": "dist/client/index.d.ts",
"bin": {
"build-storybook": "./bin/build.js",
"start-storybook": "./bin/index.js",

View File

@ -1,94 +0,0 @@
// import { start } from '@storybook/core/client';
// import Vue from 'vue';
// import './globals';
// import render, { VALUES } from './render';
// import { extractProps } from './util';
// export const WRAPS = 'STORYBOOK_WRAPS';
// function prepare(rawStory, innerStory) {
// let story = rawStory;
// // eslint-disable-next-line no-underscore-dangle
// if (!story._isVue) {
// if (typeof story === 'string') {
// story = { template: story };
// }
// if (innerStory) {
// story.components = { ...(story.components || {}), story: innerStory };
// }
// story = Vue.extend(story);
// } else if (story.options[WRAPS]) {
// return story;
// }
// return Vue.extend({
// [WRAPS]: story,
// [VALUES]: { ...(innerStory ? innerStory.options[VALUES] : {}), ...extractProps(story) },
// functional: true,
// render(h, { data, parent, children }) {
// return h(
// story,
// {
// ...data,
// props: { ...(data.props || {}), ...parent.$root[VALUES] },
// },
// children
// );
// },
// });
// }
// function decorateStory(getStory, decorators) {
// return decorators.reduce(
// (decorated, decorator) => (context = {}) => {
// let story;
// const decoratedStory = decorator((p = {}) => {
// story = decorated(
// p
// ? {
// ...context,
// ...p,
// parameters: {
// ...context.parameters,
// ...p.parameters,
// },
// }
// : context
// );
// return story;
// }, context);
// if (!story) {
// story = decorated(context);
// }
// if (decoratedStory === story) {
// return story;
// }
// return prepare(decoratedStory, story);
// },
// context => prepare(getStory(context))
// );
// }
// const { load: coreLoad, clientApi, configApi, forceReRender } = start(render, { decorateStory });
// export const {
// setAddon,
// addDecorator,
// addParameters,
// clearDecorators,
// getStorybook,
// raw,
// } = clientApi;
// const framework = 'vue';
// export const storiesOf = (...args) => clientApi.storiesOf(...args).addParameters({ framework });
// export const load = (...args) => coreLoad(...args, framework);
// export const { configure } = configApi;
// export { forceReRender };

View File

@ -1,6 +0,0 @@
import packageJson from '../../package.json';
export default {
packageJson,
frameworkPresets: [require.resolve('./framework-preset-vue.js')],
};