最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Override an export from another library es6 - Stack Overflow

programmeradmin4浏览0评论

Given a javascript library (let's say supportlibrary) which has 100 named exports, I want to create my own pat-library which exports all named exports from supportlibrary but override a single named export with another.

For now, I can export all 99 named exports manually, but this would be a tedious job. I rather would have something like:

import {SupportComponent as ExcludedSupportComponent,...rest} from 'supportlibrary';
import SupportComponent from './MySupportComponent';

export {
    ...rest,
    SupportComponent
}

Is something like this possible using es6 / tc39-stage-x functionality? or is this only possible with CommonJs?

Given a javascript library (let's say supportlibrary) which has 100 named exports, I want to create my own pat-library which exports all named exports from supportlibrary but override a single named export with another.

For now, I can export all 99 named exports manually, but this would be a tedious job. I rather would have something like:

import {SupportComponent as ExcludedSupportComponent,...rest} from 'supportlibrary';
import SupportComponent from './MySupportComponent';

export {
    ...rest,
    SupportComponent
}

Is something like this possible using es6 / tc39-stage-x functionality? or is this only possible with CommonJs?

Share Improve this question asked Feb 23, 2018 at 15:53 Dennie de LangeDennie de Lange 2,9442 gold badges20 silver badges33 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 11

You should be able to do

export * from 'supportlibrary';
export {default as SupportComponent} from './MySupportComponent';

to re-export all of the exports from 'supportlibrary', then export one additional named property that will take precedence over the export * version.

发布评论

评论列表(0)

  1. 暂无评论