arboleya / coffee-toaster

Minimalist build system for CoffeeScript.
114 stars 23 forks source link

Debug mode: toaster directory sent to release directory instead of debug #39

Closed soulwire closed 11 years ago

soulwire commented 12 years ago

According to the README

In debug mode (option -d) all files will be compiled individually inside a folder called "toaster" in the same directory you've pointed your debug file,

However it's created in the release directory instead.

Steps to recreate

Define release and debug directories:

# => SRC FOLDER
toast 'source'
    release: 'release/main.js'
    debug: 'debug/debug.js'

Expected result

The following directory structure would be created:

release
    main.js
debug
    toaster
    debug.js

Actual result

The toaster directory is created in the release directory

release
    toaster
    main.js
debug
    debug.js
arboleya commented 12 years ago

You're right, I'm fixing it to the next release.

Thank you.

soulwire commented 12 years ago

Great, thanks!