You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is it's possible to forget to add a new export to orbit-components/src/index.js.flow and orbit-components/src/index.d.ts (that goes for all libdefs, but one step at a time). It would be great if we could test in CI whether they contain all of the exports. This can be done by parsing both files and checking their AST, you can use AST explorer for this. It's probably enough to use Babel parser for both files.
The text was updated successfully, but these errors were encountered:
The problem is it's possible to forget to add a new export to
orbit-components/src/index.js.flow
andorbit-components/src/index.d.ts
(that goes for all libdefs, but one step at a time). It would be great if we could test in CI whether they contain all of the exports. This can be done by parsing both files and checking their AST, you can use AST explorer for this. It's probably enough to use Babel parser for both files.The text was updated successfully, but these errors were encountered: