Convert meteor-autocomplete package to main module structure (#12491)
* First wave of removal of Meteor global * Second wave of removal of Meteor global * Third wave of removal of Meteor global * Fix tests * Remove global variable SHA256 * Remove global variable WebApp * Remove global variable EJSON * Remove global variable Email * Remove global variable HTTP * Remove global variable Random * Remove global variable ReactiveDict * Remove global variable ReactiveVar * Remove global variable Accounts * Remove globals variables Match and check * Remove global variable Mongo * Remove global variable moment * Remove global variable Tracker * Remove global variable Blaze * Remove global variables FlowRouter and BlazeLayout * Add FlowRouter to eslint global in tests file * Remove global variable DDPRateLimiter * Remove global variable Session * Remove global variable UAParser * Remove global variable Promise * Remove global variable Reload * Remove global variable CryptoJS * Remove global variable Template * Remove global variable TAPi18n * Remove global variable TAPi18next * Exposing t function from rocketchat:ui package * Convert chatpal search to main module structure * Fix ESLint * Convert meteor-accounts-saml to main module structure * Convert meteor-autocomplete to main module structurepull/12495/head^2
parent
c5a14f2196
commit
b8714053a2
@ -0,0 +1,8 @@ |
||||
import './autocomplete.css'; |
||||
import './inputs.html'; |
||||
import './templates'; |
||||
import AutoComplete from './autocomplete-client'; |
||||
|
||||
export { |
||||
AutoComplete, |
||||
}; |
@ -0,0 +1 @@ |
||||
import './autocomplete-server'; |
Loading…
Reference in new issue