Skip to content

Commit

Permalink
refactor command build
Browse files Browse the repository at this point in the history
  • Loading branch information
shavyg2 committed Apr 12, 2014
1 parent 6ec86a8 commit 24c6fb1
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 34 deletions.
18 changes: 18 additions & 0 deletions aplication.coffee
@@ -0,0 +1,18 @@
class Person
constructor:(@name)->

speak:->
console.log "hi my name is"

walk:->
"console.log walking"



class Child extends Person
constructor:(name,@age)->
super(name)




2 changes: 1 addition & 1 deletion build-release.sh
Expand Up @@ -2,4 +2,4 @@

basedir=$(dirname $0)
cd $basedir
coffee -wc -o bin src/Main.coffee src/FileFinder.coffee src/FileScanner.coffee src/Include.coffee src/List.coffee src/Include.coffee src/Stacker.coffee src/List.coffee &
coffee -c -o bin src/Main.coffee src/FileFinder.coffee src/FileScanner.coffee src/Include.coffee src/List.coffee src/Include.coffee src/Stacker.coffee src/List.coffee
69 changes: 36 additions & 33 deletions package.json
@@ -1,35 +1,38 @@
{
"name": "coffee-stir",
"version": "0.0.24",
"bin": "./bin/cli.js",
"description": "This is a library to merge, watch and compile coffeescript files.",
"keyword": [
"coffeescript",
"coffee-script",
"preprocessor",
"bundle",
"beastjavascript",
"concat",
"merge",
"include",
"add"
],
"author": {
"name": "Shavauhn Gabay",
"email": "shavyg2@gmail.com",
"url": "http://www.shavauhn.com"
},
"dependencies": {
"commander": "2.*",
"chokidar": "0.*"
},
"devDependencies": {
"commander": "2.*",
"chokidar": "0.*"
},
"main": "coffee-stir",
"repository": {
"type": "git",
"url": "https://github.com/BeastJavaScript/Coffee-Stir.git"
}
"name": "coffee-stir",
"version": "0.0.24",
"bin": "./bin/cli.js",
"description": "This is a library to merge, watch and compile coffeescript files.",
"keyword": [
"coffeescript",
"coffee-script",
"preprocessor",
"bundle",
"beastjavascript",
"concat",
"merge",
"include",
"add"
],
"author": {
"name": "Shavauhn Gabay",
"email": "shavyg2@gmail.com",
"url": "http://www.shavauhn.com"
},
"dependencies": {
"commander": "2.*",
"chokidar": "0.*"
},
"devDependencies": {
"commander": "2.*",
"chokidar": "0.*"
},
"main": "coffee-stir",
"repository": {
"type": "git",
"url": "https://github.com/BeastJavaScript/Coffee-Stir.git"
},
"scripts": {
"prepublish": "build-release.sh"
}
}

0 comments on commit 24c6fb1

Please sign in to comment.