Skip to content

Commit

Permalink
Allow to add CC in import sentence (#5372)
Browse files Browse the repository at this point in the history
* Allow to add CC in import sentence

* Update babel-conditional-preprocess.js
  • Loading branch information
PorterNan authored Oct 31, 2024
1 parent b3a5ca6 commit 7682f38
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/scripts/babel-conditional-preprocess.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ exports.default = babelHelper.declare((_api, opts) => {
Handle(path, featureSet, stabilizedFeatureSet);
},

ImportSpecifier(path) {
Handle(path, featureSet, stabilizedFeatureSet);
},

ExportNamedDeclaration(path) {
Handle(path, featureSet, stabilizedFeatureSet);
},
Expand Down

0 comments on commit 7682f38

Please sign in to comment.