As of Atom 1.14, any method named initialize on the main module of a package will be automatically invoked by Atom before calling activate. You can read more about the change in this pull request to Atom's documentation.
Since your package's initialize method wasn't written with this behavior in mind, we recommend renaming it to avoid unexpected breakage.
Atom 1.14 should reach the beta channel in early January 2017 and will be on stable in early February 2017. Please rename initialize before then to prevent issues, and let us know if you have any questions.
Thanks for your contributions to the Atom community! :bow:
As of Atom 1.14, any method named
initialize
on the main module of a package will be automatically invoked by Atom before callingactivate
. You can read more about the change in this pull request to Atom's documentation.Since your package's
initialize
method wasn't written with this behavior in mind, we recommend renaming it to avoid unexpected breakage.Atom 1.14 should reach the beta channel in early January 2017 and will be on stable in early February 2017. Please rename
initialize
before then to prevent issues, and let us know if you have any questions.Thanks for your contributions to the Atom community! :bow:
/cc: @peterjohnhunt