Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

These are SCons build tools for Coffeescript files.

In normal use, the Coffeescript.py file would go into ./site_scons/site_tools/, and an SConstruct file would be placed in the project root that sets up a build.

SConstruct::

import os

env = DefaultEnvironment(
        tools = ['Coffeescript'],
        ENV = dict(
            PATH = os.environ['PATH'],
            )
        )

env.SConscript(dirs=['js'], exports=['env'])

js/SConscript::

Import('env')

coffee_files = env.Glob('*.coffee')

js_files = env.Coffeescript(coffee_files)

About

Scons tool for Coffescript builds

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages