mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
change addon-measure to new preview.js structure
This commit is contained in:
parent
3de6aa7d82
commit
09ef0ebd1f
1
addons/measure/manager.js
Normal file
1
addons/measure/manager.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/esm/manager');
|
@ -1,12 +0,0 @@
|
||||
function config(entry = []) {
|
||||
return [...entry, require.resolve('./dist/esm/preset/addDecorator')];
|
||||
}
|
||||
|
||||
function managerEntries(entry = [], options) {
|
||||
return [...entry, require.resolve('./dist/esm/manager')];
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
managerEntries,
|
||||
config,
|
||||
};
|
1
addons/measure/preview.js
Normal file
1
addons/measure/preview.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/esm/preview');
|
@ -1 +1,5 @@
|
||||
require('./dist/esm/manager');
|
||||
require('@storybook/client-logger').once.warn(
|
||||
'register.js is deprecated see https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-registerjs'
|
||||
);
|
||||
|
||||
require('./manager');
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { withMeasure } from '../withMeasure';
|
||||
import { PARAM_KEY } from '../constants';
|
||||
import { withMeasure } from './withMeasure';
|
||||
import { PARAM_KEY } from './constants';
|
||||
|
||||
export const decorators = [withMeasure];
|
||||
|
Loading…
x
Reference in New Issue
Block a user