mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
Merge branch 'future/base' into future/add-renderers
This commit is contained in:
commit
94272ed44b
14
MIGRATION.md
14
MIGRATION.md
@ -3,6 +3,7 @@
|
|||||||
- [From version 6.5.x to 7.0.0](#from-version-65x-to-700)
|
- [From version 6.5.x to 7.0.0](#from-version-65x-to-700)
|
||||||
- [Breaking changes](#breaking-changes)
|
- [Breaking changes](#breaking-changes)
|
||||||
- [Framework field mandatory](#framework-field-mandatory)
|
- [Framework field mandatory](#framework-field-mandatory)
|
||||||
|
- [frameworkOptions renamed](#frameworkoptions-renamed)
|
||||||
- [From version 6.4.x to 6.5.0](#from-version-64x-to-650)
|
- [From version 6.4.x to 6.5.0](#from-version-64x-to-650)
|
||||||
- [React18 new root API](#react18-new-root-api)
|
- [React18 new root API](#react18-new-root-api)
|
||||||
- [Deprecated register.js](#deprecated-registerjs)
|
- [Deprecated register.js](#deprecated-registerjs)
|
||||||
@ -209,6 +210,19 @@
|
|||||||
|
|
||||||
In 6.4 we introduced a new `main.js` field called [`framework`](#mainjs-framework-field). Starting in 7.0, this field is mandatory.
|
In 6.4 we introduced a new `main.js` field called [`framework`](#mainjs-framework-field). Starting in 7.0, this field is mandatory.
|
||||||
|
|
||||||
|
#### frameworkOptions renamed
|
||||||
|
|
||||||
|
In 7.0, the `main.js` fields `reactOptions` and `angularOptions` have been renamed. They are now options on the `framework` field:
|
||||||
|
|
||||||
|
```js
|
||||||
|
module.exports = {
|
||||||
|
framework: {
|
||||||
|
name: '@storybook/react',
|
||||||
|
options: { fastRefresh: true };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## From version 6.4.x to 6.5.0
|
## From version 6.4.x to 6.5.0
|
||||||
|
|
||||||
### React18 new root API
|
### React18 new root API
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
import { Configuration } from 'webpack';
|
import { Configuration } from 'webpack';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
import type { Preset } from '@storybook/core-common';
|
||||||
|
|
||||||
import type { PresetOptions } from './preset-options';
|
import type { PresetOptions } from './preset-options';
|
||||||
|
import type { AngularOptions } from '../types';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Source : https://github.com/angular/angular-cli/blob/ebccb5de4a455af813c5e82483db6af20666bdbd/packages/angular_devkit/build_angular/src/utils/load-esm.ts#L23
|
* Source : https://github.com/angular/angular-cli/blob/ebccb5de4a455af813c5e82483db6af20666bdbd/packages/angular_devkit/build_angular/src/utils/load-esm.ts#L23
|
||||||
@ -48,13 +50,8 @@ export const runNgcc = async () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const webpack = async (webpackConfig: Configuration, options: PresetOptions) => {
|
export const webpack = async (webpackConfig: Configuration, options: PresetOptions) => {
|
||||||
const angularOptions = await options.presets.apply(
|
const framework = await options.presets.apply<Preset>('framework');
|
||||||
'angularOptions',
|
const angularOptions = (typeof framework === 'object' ? framework.options : {}) as AngularOptions;
|
||||||
{} as {
|
|
||||||
enableIvy?: boolean;
|
|
||||||
},
|
|
||||||
options
|
|
||||||
);
|
|
||||||
|
|
||||||
// Default to true, if undefined
|
// Default to true, if undefined
|
||||||
if (angularOptions.enableIvy === false) {
|
if (angularOptions.enableIvy === false) {
|
||||||
|
@ -1,7 +1,17 @@
|
|||||||
import type { StorybookConfig as BaseConfig } from '@storybook/core-common';
|
import type { StorybookConfig as BaseConfig } from '@storybook/core-common';
|
||||||
|
|
||||||
export interface StorybookConfig extends BaseConfig {
|
export interface AngularOptions {
|
||||||
angularOptions?: {
|
enableIvy: boolean;
|
||||||
enableIvy: boolean;
|
}
|
||||||
};
|
|
||||||
|
/**
|
||||||
|
* The interface for Storybook configuration in `main.ts` files.
|
||||||
|
*/
|
||||||
|
export interface StorybookConfig extends BaseConfig {
|
||||||
|
framework:
|
||||||
|
| string
|
||||||
|
| {
|
||||||
|
name: '@storybook/angular';
|
||||||
|
options: AngularOptions;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,10 @@ describe('framework-preset-react', () => {
|
|||||||
presets: {
|
presets: {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
apply: async () => ({
|
apply: async () => ({
|
||||||
fastRefresh: true,
|
name: '@storybook/react',
|
||||||
|
options: {
|
||||||
|
fastRefresh: true,
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
presetsList: [],
|
presetsList: [],
|
||||||
@ -36,7 +39,10 @@ describe('framework-preset-react', () => {
|
|||||||
presets: {
|
presets: {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
apply: async () => ({
|
apply: async () => ({
|
||||||
fastRefresh: false,
|
name: '@storybook/react',
|
||||||
|
options: {
|
||||||
|
fastRefresh: false,
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -4,23 +4,18 @@ import ReactRefreshWebpackPlugin from '@pmmmwh/react-refresh-webpack-plugin';
|
|||||||
import type { Configuration } from 'webpack';
|
import type { Configuration } from 'webpack';
|
||||||
|
|
||||||
import { logger } from '@storybook/node-logger';
|
import { logger } from '@storybook/node-logger';
|
||||||
import type { Options } from '@storybook/core-common';
|
import type { Options, Preset } from '@storybook/core-common';
|
||||||
|
import type { ReactOptions } from '../types';
|
||||||
|
|
||||||
|
const useFastRefresh = async (options: Options) => {
|
||||||
|
const isDevelopment = options.configType === 'DEVELOPMENT';
|
||||||
|
const framework = await options.presets.apply<Preset>('framework');
|
||||||
|
const reactOptions = (typeof framework === 'object' ? framework.options : {}) as ReactOptions;
|
||||||
|
return isDevelopment && (reactOptions.fastRefresh || process.env.FAST_REFRESH === 'true');
|
||||||
|
};
|
||||||
|
|
||||||
export async function babel(config: TransformOptions, options: Options) {
|
export async function babel(config: TransformOptions, options: Options) {
|
||||||
const isDevelopment = options.configType === 'DEVELOPMENT';
|
if (!(await useFastRefresh(options))) return config;
|
||||||
const reactOptions = await options.presets.apply(
|
|
||||||
'reactOptions',
|
|
||||||
{} as {
|
|
||||||
fastRefresh?: boolean;
|
|
||||||
},
|
|
||||||
options
|
|
||||||
);
|
|
||||||
const fastRefreshEnabled =
|
|
||||||
isDevelopment && (reactOptions.fastRefresh || process.env.FAST_REFRESH === 'true');
|
|
||||||
|
|
||||||
if (!fastRefreshEnabled) {
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...config,
|
...config,
|
||||||
@ -59,20 +54,8 @@ export async function babelDefault(config: TransformOptions): Promise<TransformO
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function webpackFinal(config: Configuration, options: Options) {
|
export async function webpackFinal(config: Configuration, options: Options) {
|
||||||
const isDevelopment = options.configType === 'DEVELOPMENT';
|
if (!(await useFastRefresh(options))) return config;
|
||||||
const reactOptions = await options.presets.apply(
|
|
||||||
'reactOptions',
|
|
||||||
{} as {
|
|
||||||
fastRefresh?: boolean;
|
|
||||||
},
|
|
||||||
options
|
|
||||||
);
|
|
||||||
const fastRefreshEnabled =
|
|
||||||
isDevelopment && (reactOptions.fastRefresh || process.env.FAST_REFRESH === 'true');
|
|
||||||
|
|
||||||
if (!fastRefreshEnabled) {
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
// matches the name of the plugin in CRA.
|
// matches the name of the plugin in CRA.
|
||||||
const hasReactRefresh = config.plugins.find((p) => p.constructor.name === 'ReactRefreshPlugin');
|
const hasReactRefresh = config.plugins.find((p) => p.constructor.name === 'ReactRefreshPlugin');
|
||||||
|
|
||||||
|
26
app/react/src/types/index.ts
Normal file
26
app/react/src/types/index.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import type { StorybookConfig as BaseConfig } from '@storybook/core-common';
|
||||||
|
|
||||||
|
export interface ReactOptions {
|
||||||
|
fastRefresh?: boolean;
|
||||||
|
strictMode?: boolean;
|
||||||
|
/**
|
||||||
|
* Use React's legacy root API to mount components
|
||||||
|
* @description
|
||||||
|
* React has introduced a new root API with React 18.x to enable a whole set of new features (e.g. concurrent features)
|
||||||
|
* If this flag is true, the legacy Root API is used to mount components to make it easier to migrate step by step to React 18.
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
legacyRootApi?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The interface for Storybook configuration in `main.ts` files.
|
||||||
|
*/
|
||||||
|
export interface StorybookConfig extends BaseConfig {
|
||||||
|
framework:
|
||||||
|
| string
|
||||||
|
| {
|
||||||
|
name: '@storybook/react';
|
||||||
|
options: ReactOptions;
|
||||||
|
};
|
||||||
|
}
|
1
app/react/types.d.ts
vendored
Normal file
1
app/react/types.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/ts3.9/types/index.d';
|
@ -1,19 +0,0 @@
|
|||||||
import type { StorybookConfig as BaseConfig } from '@storybook/core-common';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The interface for Storybook configuration in `main.ts` files.
|
|
||||||
*/
|
|
||||||
export interface StorybookConfig extends BaseConfig {
|
|
||||||
reactOptions?: {
|
|
||||||
fastRefresh?: boolean;
|
|
||||||
strictMode?: boolean;
|
|
||||||
/**
|
|
||||||
* Use React's legacy root API to mount components
|
|
||||||
* @description
|
|
||||||
* React has introduced a new root API with React 18.x to enable a whole set of new features (e.g. concurrent features)
|
|
||||||
* If this flag is true, the legacy Root API is used to mount components to make it easier to migrate step by step to React 18.
|
|
||||||
* @default false
|
|
||||||
*/
|
|
||||||
legacyRootApi?: boolean;
|
|
||||||
};
|
|
||||||
}
|
|
@ -30,7 +30,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"bin/**/*",
|
|
||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
"*.js",
|
"*.js",
|
||||||
|
23
docs/faq.md
23
docs/faq.md
@ -16,8 +16,11 @@ module.exports = {
|
|||||||
addons: [
|
addons: [
|
||||||
/* ... */
|
/* ... */
|
||||||
],
|
],
|
||||||
angularOptions: {
|
framework: {
|
||||||
enableIvy: false,
|
name: '@storybook/angular',
|
||||||
|
options: {
|
||||||
|
enableIvy: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
@ -73,8 +76,11 @@ FAST_REFRESH=true
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
reactOptions: {
|
framework: {
|
||||||
fastRefresh: true,
|
name: '@storybook/react',
|
||||||
|
options: {
|
||||||
|
fastRefresh: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
@ -145,8 +151,8 @@ With the release of version 6.0, we updated our documentation as well. That does
|
|||||||
|
|
||||||
We're only covering versions 5.3 and 5.0 as they were important milestones for Storybook. If you want to go back in time a little more, you'll have to check the specific release in the monorepo.
|
We're only covering versions 5.3 and 5.0 as they were important milestones for Storybook. If you want to go back in time a little more, you'll have to check the specific release in the monorepo.
|
||||||
|
|
||||||
| Section | Page | Current Location | Version 5.3 location | Version 5.0 location |
|
| Section | Page | Current Location | Version 5.3 location | Version 5.0 location |
|
||||||
|------------------|-------------------------------------------|------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| ---------------- | ----------------------------------------- | --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| Get started | Install | [See current documentation](./get-started/install.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/guides/quick-start-guide) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/guides/quick-start-guide) |
|
| Get started | Install | [See current documentation](./get-started/install.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/guides/quick-start-guide) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/guides/quick-start-guide) |
|
||||||
| | What's a story | [See current documentation](./get-started/whats-a-story.md) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.3/docs/src/pages/guides) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.0/docs/src/pages/guides) |
|
| | What's a story | [See current documentation](./get-started/whats-a-story.md) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.3/docs/src/pages/guides) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.0/docs/src/pages/guides) |
|
||||||
| | Browse Stories | [See current documentation](./get-started/browse-stories.md) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.3/docs/src/pages/guides) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.0/docs/src/pages/guides) |
|
| | Browse Stories | [See current documentation](./get-started/browse-stories.md) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.3/docs/src/pages/guides) | [See versioned documentation for your framework](https://github.com/storybookjs/storybook/blob/release/5.0/docs/src/pages/guides) |
|
||||||
@ -161,7 +167,7 @@ We're only covering versions 5.3 and 5.0 as they were important milestones for S
|
|||||||
| | MDX | [See current documentation](./writing-docs/mdx.md) | See versioned addon documentation | Non existing feature or undocumented |
|
| | MDX | [See current documentation](./writing-docs/mdx.md) | See versioned addon documentation | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Argstable | [See current documentation](./writing-docs/doc-block-argstable.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Argstable | [See current documentation](./writing-docs/doc-block-argstable.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Canvas | [See current documentation](./writing-docs/doc-block-canvas.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Canvas | [See current documentation](./writing-docs/doc-block-canvas.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Color Palette | [See current documentation](./writing-docs/doc-block-colorpalette.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Color Palette | [See current documentation](./writing-docs/doc-block-colorpalette.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Description | [See current documentation](./writing-docs/doc-block-description.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Description | [See current documentation](./writing-docs/doc-block-description.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Icon Gallery | [See current documentation](./writing-docs/doc-block-icongallery.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Icon Gallery | [See current documentation](./writing-docs/doc-block-icongallery.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
| | Doc Blocks/Source | [See current documentation](./writing-docs/doc-block-source.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
| | Doc Blocks/Source | [See current documentation](./writing-docs/doc-block-source.md) | [See versioned addon documentation](https://github.com/storybookjs/storybook/tree/release/5.3/addons/docs/) | Non existing feature or undocumented |
|
||||||
@ -203,9 +209,10 @@ We're only covering versions 5.3 and 5.0 as they were important milestones for S
|
|||||||
| | Addons API | [See current documentation](./addons/addons-api.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/addons/api) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/addons/api) |
|
| | Addons API | [See current documentation](./addons/addons-api.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/addons/api) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/addons/api) |
|
||||||
| API | Stories/Component Story Format | [See current documentation](./api/csf.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/component-story-format) | Non existing feature or undocumented |
|
| API | Stories/Component Story Format | [See current documentation](./api/csf.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/component-story-format) | Non existing feature or undocumented |
|
||||||
| | Stories/MDX syntax | [See current documentation](./api/mdx.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/mdx-syntax) | Non existing feature or undocumented |
|
| | Stories/MDX syntax | [See current documentation](./api/mdx.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/mdx-syntax) | Non existing feature or undocumented |
|
||||||
| | Stories/StoriesOF format (see note below) | [See current documentation](../lib/core/docs/storiesOf.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/storiesof-api) | Non existing feature or undocumented |
|
| | Stories/StoriesOF format (see note below) | [See current documentation](../lib/core/docs/storiesOf.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/formats/storiesof-api) | Non existing feature or undocumented |
|
||||||
| | Frameworks | [See current documentation](./api/new-frameworks.md) | Non existing feature or undocumented | Non existing feature or undocumented |
|
| | Frameworks | [See current documentation](./api/new-frameworks.md) | Non existing feature or undocumented | Non existing feature or undocumented |
|
||||||
| | CLI options | [See current documentation](./api/cli-options.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/configurations/cli-options) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/configurations/cli-options) |
|
| | CLI options | [See current documentation](./api/cli-options.md) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.3/docs/src/pages/configurations/cli-options) | [See versioned documentation](https://github.com/storybookjs/storybook/tree/release/5.0/docs/src/pages/configurations/cli-options) |
|
||||||
|
|
||||||
<div class="aside">
|
<div class="aside">
|
||||||
With the release of version 5.3, we've updated how you can write your stories more compactly and easily. It doesn't mean that the <code>storiesOf</code> format has been removed. For the time being, we're still supporting it, and we have documentation for it. But be advised that this is bound to change in the future.
|
With the release of version 5.3, we've updated how you can write your stories more compactly and easily. It doesn't mean that the <code>storiesOf</code> format has been removed. For the time being, we're still supporting it, and we have documentation for it. But be advised that this is bound to change in the future.
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,9 +17,6 @@ module.exports = {
|
|||||||
core: {
|
core: {
|
||||||
builder: 'webpack4',
|
builder: 'webpack4',
|
||||||
},
|
},
|
||||||
angularOptions: {
|
|
||||||
enableIvy: true,
|
|
||||||
},
|
|
||||||
// These are just here to test composition. They could be added to any storybook example project
|
// These are just here to test composition. They could be added to any storybook example project
|
||||||
refs: {
|
refs: {
|
||||||
react: {
|
react: {
|
||||||
@ -44,5 +41,10 @@ module.exports = {
|
|||||||
buildStoriesJson: true,
|
buildStoriesJson: true,
|
||||||
breakingChangesV7: true,
|
breakingChangesV7: true,
|
||||||
},
|
},
|
||||||
framework: '@storybook/angular',
|
framework: {
|
||||||
|
name: '@storybook/angular',
|
||||||
|
options: {
|
||||||
|
enableIvy: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
"e2e": "ng e2e",
|
"e2e": "ng e2e",
|
||||||
"postinstall": "ngcc --source ../../node_modules",
|
"postinstall": "ngcc --source ../../node_modules",
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"storybook": "yarn storybook-prebuild && ng run angular-cli:storybook",
|
"storybook": "yarn storybook-prebuild && ng run angular-cli:storybook",
|
||||||
"storybook-prebuild": "yarn test:generate-output",
|
"storybook-prebuild": "yarn test:generate-output",
|
||||||
@ -68,6 +67,7 @@
|
|||||||
"jest": "^26.6.3",
|
"jest": "^26.6.3",
|
||||||
"jest-preset-angular": "^8.3.2",
|
"jest-preset-angular": "^8.3.2",
|
||||||
"protractor": "~7.0.0",
|
"protractor": "~7.0.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"storybook-addon-angular-ivy": "^0.0.1",
|
"storybook-addon-angular-ivy": "^0.0.1",
|
||||||
"ts-jest": "^26.4.4",
|
"ts-jest": "^26.4.4",
|
||||||
"ts-node": "^9.1.0",
|
"ts-node": "^9.1.0",
|
||||||
|
@ -3,9 +3,6 @@ const path = require('path');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
stories: ['../src/stories/**/*.stories.@(js|mdx)'],
|
stories: ['../src/stories/**/*.stories.@(js|mdx)'],
|
||||||
logLevel: 'debug',
|
logLevel: 'debug',
|
||||||
reactOptions: {
|
|
||||||
fastRefresh: true,
|
|
||||||
},
|
|
||||||
addons: [
|
addons: [
|
||||||
'@storybook/preset-create-react-app',
|
'@storybook/preset-create-react-app',
|
||||||
'@storybook/addon-ie11',
|
'@storybook/addon-ie11',
|
||||||
@ -38,5 +35,8 @@ module.exports = {
|
|||||||
buildStoriesJson: true,
|
buildStoriesJson: true,
|
||||||
breakingChangesV7: true,
|
breakingChangesV7: true,
|
||||||
},
|
},
|
||||||
framework: '@storybook/react',
|
framework: {
|
||||||
|
name: '@storybook/react',
|
||||||
|
options: { fastRefresh: true },
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"storybook": "yarn sb dev -p 9010 --no-manager-cache",
|
"storybook": "sb dev -p 9010 --no-manager-cache",
|
||||||
"test": "react-scripts test --env=jsdom"
|
"test": "react-scripts test --env=jsdom"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -35,6 +34,7 @@
|
|||||||
"@storybook/preset-create-react-app": "^3.1.6",
|
"@storybook/preset-create-react-app": "^3.1.6",
|
||||||
"@storybook/react": "6.5.0-beta.0",
|
"@storybook/react": "6.5.0-beta.0",
|
||||||
"@storybook/theming": "6.5.0-beta.0",
|
"@storybook/theming": "6.5.0-beta.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
},
|
},
|
||||||
"storybook": {
|
"storybook": {
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache",
|
"storybook": "sb dev -p 9009 --no-manager-cache",
|
||||||
"test": "react-scripts test --env=jsdom"
|
"test": "react-scripts test --env=jsdom"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -30,6 +29,7 @@
|
|||||||
"@storybook/theming": "6.5.0-beta.0",
|
"@storybook/theming": "6.5.0-beta.0",
|
||||||
"babel-core": "6",
|
"babel-core": "6",
|
||||||
"babel-runtime": "6",
|
"babel-runtime": "6",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
},
|
},
|
||||||
"storybook": {
|
"storybook": {
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache",
|
"storybook": "sb dev -p 9009 --no-manager-cache",
|
||||||
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test"
|
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test"
|
||||||
},
|
},
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
@ -45,6 +44,7 @@
|
|||||||
"@storybook/preset-create-react-app": "^3.1.6",
|
"@storybook/preset-create-react-app": "^3.1.6",
|
||||||
"@storybook/react": "6.5.0-beta.0",
|
"@storybook/react": "6.5.0-beta.0",
|
||||||
"@storybook/testing-library": "^0.0.9",
|
"@storybook/testing-library": "^0.0.9",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
},
|
},
|
||||||
"storybook": {
|
"storybook": {
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache",
|
"storybook": "sb dev -p 9009 --no-manager-cache",
|
||||||
"test": "react-scripts test"
|
"test": "react-scripts test"
|
||||||
},
|
},
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
@ -50,6 +49,7 @@
|
|||||||
"enzyme-to-json": "^3.6.1",
|
"enzyme-to-json": "^3.6.1",
|
||||||
"fork-ts-checker-webpack-plugin": "^6.0.4",
|
"fork-ts-checker-webpack-plugin": "^6.0.4",
|
||||||
"react-moment-proptypes": "^1.7.0",
|
"react-moment-proptypes": "^1.7.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"ts-node": "^9.1.0",
|
"ts-node": "^9.1.0",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
},
|
},
|
||||||
|
@ -6,10 +6,9 @@
|
|||||||
"build": "ember build --output-path ember-output",
|
"build": "ember build --output-path ember-output",
|
||||||
"build-storybook": "yarn storybook-prebuild && sb build",
|
"build-storybook": "yarn storybook-prebuild && sb build",
|
||||||
"dev": "ember serve",
|
"dev": "ember serve",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"storybook": "yarn build && yarn sb dev -p 9009 --no-manager-cache",
|
"storybook": "yarn build && yarn sb dev -p 9009 --no-manager-cache",
|
||||||
"storybook-prebuild": "yarn build && shx cp -r public/* ember-output",
|
"storybook-prebuild": "yarn build && shx cp -r public/* ember-output",
|
||||||
"storybook:dev": "yarn dev & yarn sb dev -p 9009"
|
"storybook:dev": "yarn dev & sb dev -p 9009"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ember-named-blocks-polyfill": "^0.2.3",
|
"ember-named-blocks-polyfill": "^0.2.3",
|
||||||
@ -46,6 +45,7 @@
|
|||||||
"ember-resolver": "^7.0.0",
|
"ember-resolver": "^7.0.0",
|
||||||
"ember-source": "~3.24.0",
|
"ember-source": "~3.24.0",
|
||||||
"loader.js": "^4.7.0",
|
"loader.js": "^4.7.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"shx": "^0.3.2",
|
"shx": "^0.3.2",
|
||||||
"webpack": "4",
|
"webpack": "4",
|
||||||
"webpack-cli": "^4.2.0"
|
"webpack-cli": "^4.2.0"
|
||||||
|
@ -3,11 +3,10 @@
|
|||||||
"version": "6.5.0-beta.0",
|
"version": "6.5.0-beta.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb build -c ./src/.storybook",
|
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build -c ./src/.storybook",
|
||||||
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011",
|
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start",
|
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start",
|
||||||
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011 --no-manager-cache -c ./src/.storybook"
|
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb dev -p 9011 --no-manager-cache -c ./src/.storybook"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@storybook/addon-essentials": "6.5.0-beta.0",
|
"@storybook/addon-essentials": "6.5.0-beta.0",
|
||||||
@ -33,6 +32,7 @@
|
|||||||
"@types/react": "^16.14.23",
|
"@types/react": "^16.14.23",
|
||||||
"@types/react-dom": "^16.9.14",
|
"@types/react-dom": "^16.9.14",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"typescript": "^3.9.7",
|
"typescript": "^3.9.7",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"generate-addon-jest-testresults": "jest --config=tests/addon-jest.config.json --json --outputFile=stories/addon-jest.testresults.json",
|
"generate-addon-jest-testresults": "jest --config=tests/addon-jest.config.json --json --outputFile=stories/addon-jest.testresults.json",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "sb dev -p 9006 --no-manager-cache"
|
||||||
"storybook": "yarn sb dev -p 9006 --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@storybook/addon-a11y": "6.5.0-beta.0",
|
"@storybook/addon-a11y": "6.5.0-beta.0",
|
||||||
@ -35,7 +34,8 @@
|
|||||||
"format-json": "^1.0.3",
|
"format-json": "^1.0.3",
|
||||||
"global": "^4.4.0",
|
"global": "^4.4.0",
|
||||||
"postcss": "^8.2.4",
|
"postcss": "^8.2.4",
|
||||||
"postcss-color-rebeccapurple": "^6.0.0"
|
"postcss-color-rebeccapurple": "^6.0.0",
|
||||||
|
"sb": "6.5.0-beta.0"
|
||||||
},
|
},
|
||||||
"storybook": {
|
"storybook": {
|
||||||
"chromatic": {
|
"chromatic": {
|
||||||
|
@ -10,10 +10,6 @@ const config: StorybookConfig = {
|
|||||||
'./../../addons/docs/**/*.stories.tsx',
|
'./../../addons/docs/**/*.stories.tsx',
|
||||||
'./../../addons/interactions/**/*.stories.(tsx|mdx)',
|
'./../../addons/interactions/**/*.stories.(tsx|mdx)',
|
||||||
],
|
],
|
||||||
reactOptions: {
|
|
||||||
fastRefresh: true,
|
|
||||||
strictMode: true,
|
|
||||||
},
|
|
||||||
addons: [
|
addons: [
|
||||||
{
|
{
|
||||||
name: '@storybook/addon-docs',
|
name: '@storybook/addon-docs',
|
||||||
@ -51,6 +47,12 @@ const config: StorybookConfig = {
|
|||||||
to: '/example2',
|
to: '/example2',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
framework: '@storybook/react',
|
framework: {
|
||||||
|
name: '@storybook/react',
|
||||||
|
options: {
|
||||||
|
fastRefresh: true,
|
||||||
|
strictMode: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
module.exports = config;
|
module.exports = config;
|
||||||
|
@ -4,12 +4,11 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build -c ./",
|
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build -c ./",
|
||||||
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011 -c ./",
|
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb dev -p 9011 -c ./",
|
||||||
"do-storyshots-puppeteer": "../../node_modules/.bin/jest --projects=./storyshots-puppeteer",
|
"do-storyshots-puppeteer": "../../node_modules/.bin/jest --projects=./storyshots-puppeteer",
|
||||||
"generate-addon-jest-testresults": "jest --config=tests/addon-jest.config.json --json --outputFile=stories/addon-jest.testresults.json",
|
"generate-addon-jest-testresults": "jest --config=tests/addon-jest.config.json --json --outputFile=stories/addon-jest.testresults.json",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb dev -p 9011 -c ./ --no-manager-cache",
|
||||||
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011 -c ./ --no-manager-cache",
|
"storyshots-puppeteer": "sb build && yarn run do-storyshots-puppeteer"
|
||||||
"storyshots-puppeteer": "yarn run sb build && yarn run do-storyshots-puppeteer"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@emotion/jest": "^11.8.0",
|
"@emotion/jest": "^11.8.0",
|
||||||
@ -54,6 +53,7 @@
|
|||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
"react": "16.14.0",
|
"react": "16.14.0",
|
||||||
"react-dom": "16.14.0",
|
"react-dom": "16.14.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"terser-webpack-plugin": "^5.0.3",
|
"terser-webpack-plugin": "^5.0.3",
|
||||||
"uuid-browser": "^3.1.0",
|
"uuid-browser": "^3.1.0",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "sb dev -p 9009 --no-manager-cache"
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"global": "^4.4.0",
|
"global": "^4.4.0",
|
||||||
@ -38,6 +37,7 @@
|
|||||||
"raw-loader": "^4.0.2",
|
"raw-loader": "^4.0.2",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"svg-url-loader": "^7.1.1",
|
"svg-url-loader": "^7.1.1",
|
||||||
"webpack": "4",
|
"webpack": "4",
|
||||||
"webpack-dev-server": "^3.11.2"
|
"webpack-dev-server": "^3.11.2"
|
||||||
|
@ -5,8 +5,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build",
|
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build",
|
||||||
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011",
|
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb dev --no-manager-cache"
|
||||||
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"formik": "^2.2.9",
|
"formik": "^2.2.9",
|
||||||
@ -32,6 +31,7 @@
|
|||||||
"@types/react": "^16.14.23",
|
"@types/react": "^16.14.23",
|
||||||
"@types/react-dom": "^16.9.14",
|
"@types/react-dom": "^16.9.14",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"typescript": "^3.9.7",
|
"typescript": "^3.9.7",
|
||||||
"webpack": "4"
|
"webpack": "4"
|
||||||
}
|
}
|
||||||
|
@ -9,10 +9,9 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"server": "PORT=1337 nodemon server.js",
|
"server": "PORT=1337 nodemon server.js",
|
||||||
"start": "concurrently \"yarn server\" \"yarn storybook\"",
|
"start": "concurrently \"yarn server\" \"yarn storybook\"",
|
||||||
"storybook": "SERVER_PORT=1137 yarn sb dev -p 9006 --quiet"
|
"storybook": "SERVER_PORT=1137 sb dev -p 9006 --quiet"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@storybook/addon-a11y": "6.5.0-beta.0",
|
"@storybook/addon-a11y": "6.5.0-beta.0",
|
||||||
@ -28,6 +27,7 @@
|
|||||||
"morgan": "^1.10.0",
|
"morgan": "^1.10.0",
|
||||||
"nodemon": "^2.0.7",
|
"nodemon": "^2.0.7",
|
||||||
"pug": "^3.0.0",
|
"pug": "^3.0.0",
|
||||||
"safe-identifier": "^0.4.1"
|
"safe-identifier": "^0.4.1",
|
||||||
|
"sb": "6.5.0-beta.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
"version": "6.5.0-beta.0",
|
"version": "6.5.0-beta.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb dev -p 9011 -c ../official-storybook --no-manager-cache --preview-url=http://localhost:1337/external-iframe.html",
|
||||||
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb dev -p 9011 -c ../official-storybook --no-manager-cache --preview-url=http://localhost:1337/external-iframe.html",
|
|
||||||
"storybook-preview": "cross-env PREVIEW_URL=external-iframe.html parcel ./storybook.html --port 1337"
|
"storybook-preview": "cross-env PREVIEW_URL=external-iframe.html parcel ./storybook.html --port 1337"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@ -14,6 +13,7 @@
|
|||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"parcel": "2.0.1",
|
"parcel": "2.0.1",
|
||||||
"react": "16.14.0",
|
"react": "16.14.0",
|
||||||
"react-dom": "16.14.0"
|
"react-dom": "16.14.0",
|
||||||
|
"sb": "6.5.0-beta.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "sb dev -p 9009 --no-manager-cache"
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"global": "^4.4.0"
|
"global": "^4.4.0"
|
||||||
@ -26,6 +25,7 @@
|
|||||||
"@storybook/source-loader": "6.5.0-beta.0",
|
"@storybook/source-loader": "6.5.0-beta.0",
|
||||||
"@storybook/svelte": "6.5.0-beta.0",
|
"@storybook/svelte": "6.5.0-beta.0",
|
||||||
"@storybook/testing-library": "^0.0.7",
|
"@storybook/testing-library": "^0.0.7",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"svelte-jester": "1.3.0",
|
"svelte-jester": "1.3.0",
|
||||||
"svelte-preprocess": "4.6.8"
|
"svelte-preprocess": "4.6.8"
|
||||||
},
|
},
|
||||||
|
@ -5,9 +5,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"storybook": "yarn sb dev -p 6006 --no-manager-cache"
|
"storybook": "sb dev -p 6006 --no-manager-cache"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.8.2",
|
"core-js": "^3.8.2",
|
||||||
@ -28,6 +27,7 @@
|
|||||||
"@vue/cli-service": "~4.5.0",
|
"@vue/cli-service": "~4.5.0",
|
||||||
"@vue/compiler-sfc": "^3.0.0",
|
"@vue/compiler-sfc": "^3.0.0",
|
||||||
"babel-loader": "^8.0.0",
|
"babel-loader": "^8.0.0",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"typescript": "~3.9.3",
|
"typescript": "~3.9.3",
|
||||||
"vue-jest": "^5.0.0-alpha.8",
|
"vue-jest": "^5.0.0-alpha.8",
|
||||||
"vue-loader": "^16.1.2"
|
"vue-loader": "^16.1.2"
|
||||||
|
@ -5,9 +5,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache"
|
"storybook": "sb dev -p 9009 --no-manager-cache"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.8.2",
|
"core-js": "^3.8.2",
|
||||||
@ -24,6 +23,7 @@
|
|||||||
"@vue/cli-plugin-babel": "~4.3.1",
|
"@vue/cli-plugin-babel": "~4.3.1",
|
||||||
"@vue/cli-plugin-typescript": "~4.3.1",
|
"@vue/cli-plugin-typescript": "~4.3.1",
|
||||||
"@vue/cli-service": "~4.3.1",
|
"@vue/cli-service": "~4.3.1",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"typescript": "^3.9.7",
|
"typescript": "^3.9.7",
|
||||||
"vue-template-compiler": "^2.6.12"
|
"vue-template-compiler": "^2.6.12"
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "sb dev -p 9009 --no-manager-cache"
|
||||||
"storybook": "yarn sb dev -p 9009 --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^2.6.12",
|
"vue": "^2.6.12",
|
||||||
@ -35,6 +34,7 @@
|
|||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
|
"sb": "6.5.0-beta.0",
|
||||||
"svg-url-loader": "^7.1.1",
|
"svg-url-loader": "^7.1.1",
|
||||||
"vue-loader": "^15.9.6",
|
"vue-loader": "^15.9.6",
|
||||||
"vue-style-loader": "^4.1.2",
|
"vue-style-loader": "^4.1.2",
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build-storybook": "sb build",
|
"build-storybook": "sb build",
|
||||||
"generate-custom-elements-manifest": "yarn custom-elements-manifest analyze --litelement --dev --exclude \"./**/*.stories.ts\" --exclude \"./storybook-static\"",
|
"generate-custom-elements-manifest": "yarn custom-elements-manifest analyze --litelement --dev --exclude \"./**/*.stories.ts\" --exclude \"./storybook-static\"",
|
||||||
"sb": "node ../../lib/cli/bin/index.js",
|
"storybook": "sb dev -p 9006 --no-manager-cache"
|
||||||
"storybook": "yarn sb dev -p 9006 --no-manager-cache"
|
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"@storybook/addon-a11y": "portal:../../addons/a11y",
|
"@storybook/addon-a11y": "portal:../../addons/a11y",
|
||||||
@ -57,6 +56,7 @@
|
|||||||
"@storybook/web-components": "portal:../../app/web-components",
|
"@storybook/web-components": "portal:../../app/web-components",
|
||||||
"babel-plugin-macros": "3.1.0",
|
"babel-plugin-macros": "3.1.0",
|
||||||
"fork-ts-checker-webpack-plugin": "6.2.13",
|
"fork-ts-checker-webpack-plugin": "6.2.13",
|
||||||
|
"sb": "portal:../../lib/cli-sb",
|
||||||
"typescript": "4.2.4"
|
"typescript": "4.2.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -77,6 +77,7 @@
|
|||||||
"@storybook/web-components": "*",
|
"@storybook/web-components": "*",
|
||||||
"global": "^4.4.0",
|
"global": "^4.4.0",
|
||||||
"jest": "^27.3.1",
|
"jest": "^27.3.1",
|
||||||
|
"sb": "*",
|
||||||
"typescript": "4.2.4"
|
"typescript": "4.2.4"
|
||||||
},
|
},
|
||||||
"customElements": "custom-elements.json",
|
"customElements": "custom-elements.json",
|
||||||
|
File diff suppressed because it is too large
Load Diff
19
yarn.lock
19
yarn.lock
@ -8010,6 +8010,7 @@ __metadata:
|
|||||||
prop-types: 15.7.2
|
prop-types: 15.7.2
|
||||||
react: 16.14.0
|
react: 16.14.0
|
||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
typescript: ^3.9.7
|
typescript: ^3.9.7
|
||||||
webpack: 4
|
webpack: 4
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -8049,6 +8050,7 @@ __metadata:
|
|||||||
react: 16.14.0
|
react: 16.14.0
|
||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
react-scripts: ^4.0.2
|
react-scripts: ^4.0.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
typescript: ^3.9.7
|
typescript: ^3.9.7
|
||||||
webpack: 4
|
webpack: 4
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -13159,6 +13161,7 @@ __metadata:
|
|||||||
protractor: ~7.0.0
|
protractor: ~7.0.0
|
||||||
rxjs: ^6.6.3
|
rxjs: ^6.6.3
|
||||||
sass: ^1.43.4
|
sass: ^1.43.4
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
storybook-addon-angular-ivy: ^0.0.1
|
storybook-addon-angular-ivy: ^0.0.1
|
||||||
telejson: ^5.3.3
|
telejson: ^5.3.3
|
||||||
ts-jest: ^26.4.4
|
ts-jest: ^26.4.4
|
||||||
@ -18225,6 +18228,7 @@ __metadata:
|
|||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
react-lifecycles-compat: ^3.0.4
|
react-lifecycles-compat: ^3.0.4
|
||||||
react-scripts: ^4.0.2
|
react-scripts: ^4.0.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
webpack: 4
|
webpack: 4
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
@ -18249,6 +18253,7 @@ __metadata:
|
|||||||
react: ^15.7.0
|
react: ^15.7.0
|
||||||
react-dom: ^15.7.0
|
react-dom: ^15.7.0
|
||||||
react-scripts: 3.4.4
|
react-scripts: 3.4.4
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
webpack: 4
|
webpack: 4
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
@ -18275,6 +18280,7 @@ __metadata:
|
|||||||
react: 16.14.0
|
react: 16.14.0
|
||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
react-scripts: ^4.0.2
|
react-scripts: ^4.0.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
typescript: ^3.9.7
|
typescript: ^3.9.7
|
||||||
webpack: 4
|
webpack: 4
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -18307,6 +18313,7 @@ __metadata:
|
|||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
react-moment-proptypes: ^1.7.0
|
react-moment-proptypes: ^1.7.0
|
||||||
react-scripts: ^4.0.2
|
react-scripts: ^4.0.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
ts-node: ^9.1.0
|
ts-node: ^9.1.0
|
||||||
typescript: ^3.9.7
|
typescript: ^3.9.7
|
||||||
webpack: 4
|
webpack: 4
|
||||||
@ -20726,6 +20733,7 @@ __metadata:
|
|||||||
ember-source: ~3.24.0
|
ember-source: ~3.24.0
|
||||||
ember-template-compiler: ^1.9.0-alpha
|
ember-template-compiler: ^1.9.0-alpha
|
||||||
loader.js: ^4.7.0
|
loader.js: ^4.7.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
shx: ^0.3.2
|
shx: ^0.3.2
|
||||||
webpack: 4
|
webpack: 4
|
||||||
webpack-cli: ^4.2.0
|
webpack-cli: ^4.2.0
|
||||||
@ -25420,6 +25428,7 @@ __metadata:
|
|||||||
global: ^4.4.0
|
global: ^4.4.0
|
||||||
postcss: ^8.2.4
|
postcss: ^8.2.4
|
||||||
postcss-color-rebeccapurple: ^6.0.0
|
postcss-color-rebeccapurple: ^6.0.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
@ -34129,6 +34138,7 @@ __metadata:
|
|||||||
prop-types: ^15.7.2
|
prop-types: ^15.7.2
|
||||||
react: 16.14.0
|
react: 16.14.0
|
||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
terser-webpack-plugin: ^5.0.3
|
terser-webpack-plugin: ^5.0.3
|
||||||
uuid-browser: ^3.1.0
|
uuid-browser: ^3.1.0
|
||||||
webpack: 4
|
webpack: 4
|
||||||
@ -36912,6 +36922,7 @@ __metadata:
|
|||||||
raw-loader: ^4.0.2
|
raw-loader: ^4.0.2
|
||||||
react: ^17.0.2
|
react: ^17.0.2
|
||||||
react-dom: ^17.0.2
|
react-dom: ^17.0.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
svg-url-loader: ^7.1.1
|
svg-url-loader: ^7.1.1
|
||||||
webpack: 4
|
webpack: 4
|
||||||
webpack-dev-server: ^3.11.2
|
webpack-dev-server: ^3.11.2
|
||||||
@ -40900,7 +40911,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"sb@workspace:lib/cli-sb":
|
"sb@6.5.0-beta.0, sb@workspace:lib/cli-sb":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "sb@workspace:lib/cli-sb"
|
resolution: "sb@workspace:lib/cli-sb"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -41242,6 +41253,7 @@ __metadata:
|
|||||||
nodemon: ^2.0.7
|
nodemon: ^2.0.7
|
||||||
pug: ^3.0.0
|
pug: ^3.0.0
|
||||||
safe-identifier: ^0.4.1
|
safe-identifier: ^0.4.1
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
@ -42199,6 +42211,7 @@ __metadata:
|
|||||||
parcel: 2.0.1
|
parcel: 2.0.1
|
||||||
react: 16.14.0
|
react: 16.14.0
|
||||||
react-dom: 16.14.0
|
react-dom: 16.14.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
@ -43027,6 +43040,7 @@ __metadata:
|
|||||||
"@storybook/svelte": 6.5.0-beta.0
|
"@storybook/svelte": 6.5.0-beta.0
|
||||||
"@storybook/testing-library": ^0.0.7
|
"@storybook/testing-library": ^0.0.7
|
||||||
global: ^4.4.0
|
global: ^4.4.0
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
svelte-jester: 1.3.0
|
svelte-jester: 1.3.0
|
||||||
svelte-preprocess: 4.6.8
|
svelte-preprocess: 4.6.8
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -45944,6 +45958,7 @@ __metadata:
|
|||||||
"@vue/compiler-sfc": ^3.0.0
|
"@vue/compiler-sfc": ^3.0.0
|
||||||
babel-loader: ^8.0.0
|
babel-loader: ^8.0.0
|
||||||
core-js: ^3.8.2
|
core-js: ^3.8.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
typescript: ~3.9.3
|
typescript: ~3.9.3
|
||||||
vue: ^3.0.0
|
vue: ^3.0.0
|
||||||
vue-jest: ^5.0.0-alpha.8
|
vue-jest: ^5.0.0-alpha.8
|
||||||
@ -45973,6 +45988,7 @@ __metadata:
|
|||||||
"@vue/cli-plugin-typescript": ~4.3.1
|
"@vue/cli-plugin-typescript": ~4.3.1
|
||||||
"@vue/cli-service": ~4.3.1
|
"@vue/cli-service": ~4.3.1
|
||||||
core-js: ^3.8.2
|
core-js: ^3.8.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
typescript: ^3.9.7
|
typescript: ^3.9.7
|
||||||
vue: ^2.6.12
|
vue: ^2.6.12
|
||||||
vue-class-component: ^7.2.6
|
vue-class-component: ^7.2.6
|
||||||
@ -46040,6 +46056,7 @@ __metadata:
|
|||||||
cross-env: ^7.0.3
|
cross-env: ^7.0.3
|
||||||
file-loader: ^6.2.0
|
file-loader: ^6.2.0
|
||||||
prop-types: ^15.7.2
|
prop-types: ^15.7.2
|
||||||
|
sb: 6.5.0-beta.0
|
||||||
svg-url-loader: ^7.1.1
|
svg-url-loader: ^7.1.1
|
||||||
vue: ^2.6.12
|
vue: ^2.6.12
|
||||||
vue-loader: ^15.9.6
|
vue-loader: ^15.9.6
|
||||||
|
Loading…
x
Reference in New Issue
Block a user