I'd like to create a very simple TypeScript package into Package Control for Sublime Text 2
I've never developed a Sublime Text extension / plugin, but all I want is to package 2 existing files
- TypeScript syntax highlighting file
typescript.tmlanguage
(from here) - TypeScript build system
typescript.sublime-build
(thanks to this answer)
The first step according to the docs is
Host your plugin in its own repository on GitHub or BitBucket.
Only include a single plugin, and have the plugin files in the root of the repo.
Do I need to create a plugin? Is there a simple basic one I can fork? (found many complex ones)
Edit:
Found this one https://github.com/danro/LESS-sublime
And created this one per the example https://github.com/eranation/sublime-text-2-typescript
That's all? should I get rid of the folder?