diff --git a/Makefile b/Makefile index ceac413..4b68eac 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,9 @@ dev: lib @coffee -wc --bare -o lib src/*.coffee lib: license - @find src -name '*.coffee' | xargs coffee -c -o lib + @find src -name '*.coffee' -maxdepth 1 | xargs coffee -c -o lib + @find src/frontend -name '*.coffee' -maxdepth 1 | xargs coffee -c -o lib/frontend + @cp -R src/frontend/public lib/frontend license: @bash inject_license.sh diff --git a/examples/server.coffee b/examples/server.coffee index f48921d..a39a87c 100644 --- a/examples/server.coffee +++ b/examples/server.coffee @@ -1,3 +1,9 @@ +### +Flowqueues - Queue based programming for node.js +(c) Copyright 2014 Applidget SAS +Released under the MIT License +### + flowqueues = require("../src/flowqueues") redis = require("redis").createClient()