Cannot run Mocha with CoffeeScript

前端 未结 6 1523
感动是毒
感动是毒 2020-12-14 00:02

Makefile - Content:

REPORTER = dot

all: build

build:
    @./node_modules/coffee-script/bin/coffee \\
        -c \\
        -o lib src

clean:
    rm -rf li         


        
6条回答
  •  死守一世寂寞
    2020-12-14 00:46

    I needed two changes to my mocha args to get this to work:

    --require coffee-script/register
    --compilers coffee:coffee-script/register
    

提交回复
热议问题