This package provides the following services:
build-coffee
Atom Build provider for coffee
, compiles CoffeeScript into JavaScript. Supports the linter package for error highlighting.
See the linter in action
Installation
apm
Install build-coffee
from Atom's Package Manager or the command-line equivalent:
$ apm install build-coffee
Using Git
Change to your Atom packages directory:
Windows
# Powershell
$ cd $Env:USERPROFILE\.atom\packages
:: Command Prompt
$ cd %USERPROFILE%\.atom\packages
Linux & macOS
$ cd ~/.atom/packages/
Clone repository as build-coffee
:
$ git clone https://github.com/idleberg/atom-build-coffee build-coffee
Inside the cloned directory, install Node dependencies:
$ yarn || npm install
You should now be setup to build the package:
$ yarn build || npm run build
Usage
Build
Before you can build, select an active target with your preferred build option.
Available targets:
CoffeeScript
— compile script (Ctrl+Alt+B)CoffeeScript --map
— compile script and create a map (Ctrl+Alt+Cmd+B)CoffeeScript --bare
— compile script without the top-level function safety wrapper (Ctrl+Alt+Shift+B)CoffeeScript (user)
— compile script with arguments specified in the package settings
Shortcuts
Here's a reminder of the default shortcuts you can use with this package:
Select active target
Cmd+Alt+T or F7
Build script
Cmd+Alt+B or F9
Jump to error
Cmd+Alt+G or F4
Toggle build panel
Cmd+Alt+V or F8
License
This work is licensed under the The MIT License.