Skip to content

Commit

Permalink
IcedCoffeeScript versions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyvit committed Dec 12, 2013
1 parent 5484578 commit 4f292b1
Show file tree
Hide file tree
Showing 44 changed files with 43 additions and 37 deletions.
72 changes: 42 additions & 30 deletions IcedCoffeeScript.lrplugin/manifest.json
Expand Up @@ -5,39 +5,51 @@
"id": "iced-coffee-script",
"name": "IcedCoffeeScript",

"input": "*.iced",
"input": "*.iced *.coffee *.litcoffee *.coffee.md",
"output": "*.js",

"cmdline": [
"$(node)",
"$(plugin)/node_modules/iced-coffee-script/bin/coffee",
"$(additional)",
"-o",
"$(dst_dir)",
"$(src_path)"
],

"errors": [
{ "pattern": "Error: In ((file)), Parse error on line ((line)): ((message))\\n" },
{ "pattern": "Error: In ((file)), ((message)) on line ((line))\\n" }
],
"packages": [["npm:iced-coffee-script:*"]],

"options": [
{
"id": "no-wrapper",
"type": "checkbox",
"label": "No wrapper",
"args": "--bare"
},
"info": [
{
"type": "popup",
"id": "runtime-mode",
"label": "Iced runtime mode:",
"items": [
{ "id": "inline", "label": "Include inline", "args": "--runtime inline" },
{ "id": "window", "label": "Include globally", "args": "--runtime window" },
{ "id": "node", "label": "Include via require", "args": "--runtime node" },
{ "id": "none", "label": "Don't include", "args": "--runtime none" }
"cmdline": [
"$(node)",
"$(npm:iced-coffee-script)/bin/coffee",
"$(additional)",
"-o",
"$(dst_dir)",
"$(src_path)"
],

"errors": [
{ "pattern": "Error: In ((file)), Parse error on line ((line)): ((message))\\n" },
{ "pattern": "Error: In ((file)), ((message)) on line ((line))\\n" }
],

"options": [
{
"id": "no-wrapper",
"type": "checkbox",
"label": "No wrapper",
"args": "--bare"
},
{
"type": "popup",
"id": "runtime-mode",
"label": "Iced runtime mode:",
"items": [
{ "id": "inline", "label": "Include inline", "args": "--runtime inline" },
{ "id": "window", "label": "Include globally", "args": "--runtime window" },
{ "id": "node", "label": "Include via require", "args": "--runtime node" },
{ "id": "none", "label": "Don't include", "args": "--runtime none" }
]
},
{
"type": "checkbox",
"id": "source-map",
"label": "Generate source map",
"args": "--map"
}
]
}
]
Expand All @@ -51,7 +63,7 @@
"DestinationExtension": "js",
"CommandLine": [
"$(node)",
"$(plugin)/node_modules/iced-coffee-script/bin/coffee",
"$(plugin)/npm/iced-coffee-script-1.6.3-g/bin/coffee",
"$(additional)",
"-o",
"$(dst_dir)",
Expand Down
1 change: 0 additions & 1 deletion IcedCoffeeScript.lrplugin/node_modules/.bin/icake

This file was deleted.

1 change: 0 additions & 1 deletion IcedCoffeeScript.lrplugin/node_modules/.bin/iced

This file was deleted.

4 changes: 0 additions & 4 deletions IcedCoffeeScript.lrplugin/versions.json

This file was deleted.

2 changes: 1 addition & 1 deletion LESS.lrplugin/manifest.json
Expand Up @@ -18,7 +18,7 @@

"cmdline": [
"$(node)",
"$(npm_less)/bin/lessc",
"$(npm:less)/bin/lessc",
"$(additional)",
"$(src_path)",
"$(dst_path)"
Expand Down

0 comments on commit 4f292b1

Please sign in to comment.