File tree Expand file tree Collapse file tree 2 files changed +51
-3
lines changed
Expand file tree Collapse file tree 2 files changed +51
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,23 @@ The easiest way to install is using [Package Control](https://packagecontrol.io)
17172 . Choose ` Package Control: Install Package `
18183 . Find ` CoffeeScript ` and hit <kbd >Enter</kbd >
1919
20- ## Source Control
20+ ### Manual Install
21+
22+ 1 . Download appropriate [ CoffeeScript.sublime-package] ( https://github.com/SublimeText/CoffeeScript/releases ) for your Sublime Text build.
23+ 2 . Copy it into _ Installed Packages_ directory
24+
25+ > [ !NOTE]
26+ >
27+ > To find _ Installed Packages_ ...
28+ >
29+ > 1 . call _ Menu > Preferences > Browse Packages.._
30+ > 2 . Navigate to parent folder
31+
32+ > [ !WARNING]
33+ >
34+ > Manually installed packages are not automatically updated by Package Control.
35+
36+ ### Source Control
2137
2238> [ !TIP]
2339>
@@ -31,7 +47,7 @@ Mac: ~/Library/Application\ Support/Sublime\ Text/Packages
3147Win: %APPDATA%\S ublime Text\P ackages
3248```
3349
34- ### As a repository within the packages directory
50+ #### As a repository within the packages directory
3551
3652Open a Terminal/Console and run the following commands, replacing ` PACKAGE_PATH ` with the path corresponding to your OS above.
3753
@@ -40,7 +56,7 @@ cd PACKAGE_PATH
4056git clone https://github.com/SublimeText/BetterCoffeeScript.git " CoffeeScript"
4157```
4258
43- ### As a repository outside of the packages directory
59+ #### As a repository outside of the packages directory
4460
4561If you use Github for Mac/Windows which store repositories in a specific location, or if you just don't want a repository in your packages directory, then instead you can use a link.
4662
Original file line number Diff line number Diff line change 1+ @ echo off
2+ setlocal
3+ chcp 65001 > nul
4+ pushd %~dp0
5+
6+ if /i " %1 " == " release" goto RELEASE
7+ goto :usage
8+
9+ :RELEASE
10+ if " %2 " == " " goto :usage
11+
12+ for %%d in (" %~dp0 ." ) do set package = %%~nxd
13+
14+ echo Createing assets for " %package% " ...
15+
16+ set build = 4143
17+ set archive = %package% .sublime-package
18+ call git archive --format zip -o " %archive% " master
19+
20+ :: create the release
21+ gh release create --target master -t " v%2 " " %build% -%2 " *.sublime-package
22+ del /f /q *.sublime-package
23+ git fetch
24+ goto :eof
25+
26+ :USAGE
27+ echo USAGE:
28+ echo .
29+ echo make ^ [release^ ]
30+ echo .
31+ echo release ^ < semver^ > -- create and publish a release (e.g. 1.2.3)
32+ goto :eof
You can’t perform that action at this time.
0 commit comments