# sbt-coffeescript **Repository Path**: mirrors_playframework/sbt-coffeescript ## Basic Information - **Project Name**: sbt-coffeescript - **Description**: A CoffeeScript plugin for SBT - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README sbt-coffeescript ================ ## Status Archived. [sbt/sbt-coffeescript](https://github.com/sbt/sbt-coffeescript) is the new home for this plugin. ------ [![Build Status](https://api.travis-ci.org/sbt/sbt-coffeescript.png?branch=master)](https://travis-ci.org/sbt/sbt-coffeescript) An SBT plugin to compile [CoffeeScript](http://coffeescript.org/) sources to JavaScript. To use this plugin use the addSbtPlugin command within your project's `plugins.sbt` file: addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0") Your project's build file also needs to enable sbt-web plugins. For example with build.sbt: lazy val root = (project in file(".")).enablePlugins(SbtWeb) Once configured, any `*.coffee` or `*.litcoffee` files placed in `src/main/assets` will be compiled to JavaScript code in `target/web/public`. Supported settings: * `sourceMap` When set, generates sourceMap files. Defaults to `true`. `CoffeeScriptKeys.sourceMap := true` * `bare` When set, generates JavaScript without the [top-level function safety wrapper](http://coffeescript.org/#lexical-scope). Defaults to `false`. `CoffeeScriptKeys.bare := false` The plugin is built on top of [JavaScript Engine](https://github.com/typesafehub/js-engine) which supports different JavaScript runtimes. © Typesafe Inc., 2013, 2014