位桶管道 sass
Bitbucket Pipeline sass
我有一个使用 sass 的简单应用,我正在尝试使用管道进行设置
目前失败,因为找不到 sass 命令。
我猜我需要 运行 gem 安装 sass?但如何将其添加到我的管道配置中?目前看起来像这样:
image: node:7.4.0
pipelines:
default:
- step:
script:
- npm install
- npm install -g grunt
- npm install -g grunt-cli
- grunt prod
- ./heroku-deploy.sh
我使用 ruby-node 图像解决了这个问题,它可以访问 gem 安装
image: starefossen/ruby-node:2-5
我有一个使用 sass 的简单应用,我正在尝试使用管道进行设置 目前失败,因为找不到 sass 命令。 我猜我需要 运行 gem 安装 sass?但如何将其添加到我的管道配置中?目前看起来像这样:
image: node:7.4.0
pipelines:
default:
- step:
script:
- npm install
- npm install -g grunt
- npm install -g grunt-cli
- grunt prod
- ./heroku-deploy.sh
我使用 ruby-node 图像解决了这个问题,它可以访问 gem 安装
image: starefossen/ruby-node:2-5