我正在使用wercker自动部署 nodejs 应用程序。
我认为带有指南针支持的digitallyseamless/nodejs-bower-grunt-runtime
盒子可以完成这项工作。
我的摘录werker.yml
box: digitallyseamless/nodejs-bower-grunt-runtime:compass-support
build:
steps:
- wercker/npm-install
- greatbeyond/bower-install@0.5.8
- wercker/grunt:
stack: true
fail-on-warnings: true
tasks: clean ngconstant:production build
grunt
有关日志的摘录compass
Running "compass:dist" (compass) task
Warning: Command failed: /bin/sh -c compass --version
/bin/sh: 1: compass: not found
Use --force to continue.
Error: Command failed: /bin/sh -c compass --version
/bin/sh: 1: compass: not found
似乎我错过了一步。
如何compass
在盒子里工作?