-
Notifications
You must be signed in to change notification settings - Fork 2
Description
I use nvm to manage node versions on my OSX workstation and was attempting to install the AppBuilder package for Sublime Text. This was attempted with appbuilder 2.9.0-386, the Telerik AppBuilder plugin v2.9.0, and Sublime Text 3.0 build 3083.
Steps
I have setup a default node installation using:
$ nvm alias default 0.12
This adds that version of node to the PATH for the user for all subsequent terminal sessions.
I then installed appbuilder with:
$ npm install appbuilder -g
At that point I launched Sublime Text and went to Package Control and attempted to install the Telerik AppBuilder package and it gave me the error message "Cannot load the Telerik AppBuilder package because the Telerik AppBuilder command-line interface is not installed properly on your system. . . ."
The docs say to then modify the telerik_appbuilder.sublime-settings, but that file was never created.
Workaround
I created a telerik_appbuilder.sublime-settings in my Sublime Text Packages/User directory and specified the "node_osx_path" and "appbuilder_osx_path" settings per the docs and everything works.
I didn't look into how this plugin is looking for the appbuilder CLI, but it seems like having it in the PATH would be good enough? It would be helpful if this worked out of the box, or if the settings file was created so it is easy to find/edit...