Skip to content

Instantly share code, notes, and snippets.

View hugojosefson's full-sized avatar
👍

Hugo Josefson hugojosefson

👍
View GitHub Profile
@hugojosefson
hugojosefson / package.coffee
Created December 2, 2011 20:01 — forked from mrjjwright/package.coffee
Put this in Cakefile to write out package.coffee to NPM package.json
fs = require 'fs'
CoffeeScript = require 'coffee-script'
task "build:package", "Builds the package.json from its coffee source", (options) ->
js = CoffeeScript.compile "return #{fs.readFileSync('package.coffee', 'utf8')}"
json = JSON.stringify eval(js), null, 2
fs.writeFileSync 'package.json', json
console.log('Successfully wrote out package.json')
@hugojosefson
hugojosefson / .gitignore
Created September 28, 2011 10:14
Example project for issue MPLUGIN-187
target/
.idea/
*~
@hugojosefson
hugojosefson / .gitignore
Created June 27, 2010 18:59
Maven Android Plugin - issue 68
target