Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artarf/atom-coffee2-transpiler
A transpiler for Atom packages that processes code with coffeescript 2
https://github.com/artarf/atom-coffee2-transpiler
atom coffeescript transpiler
Last synced: 14 days ago
JSON representation
A transpiler for Atom packages that processes code with coffeescript 2
- Host: GitHub
- URL: https://github.com/artarf/atom-coffee2-transpiler
- Owner: artarf
- Created: 2020-04-25T17:19:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T15:04:43.000Z (over 4 years ago)
- Last Synced: 2024-12-10T05:37:07.460Z (14 days ago)
- Topics: atom, coffeescript, transpiler
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# atom-coffee2-transpiler
This project implements an Atom package transpiler that transpiles your package's files with coffeescript 2.
## Usage
1. Install the package
`npm install --save atom-coffee2-transpiler`
2. Add an `atomTranspilers` entry to your `package.json`
```javascript
{
...
"atomTranspilers": [
{
"glob": "**/*.coffee",
"transpiler": "atom-coffee2-transpiler"
}
]
}
```