I'm trying to setup my first Ember.js app with Ember AppKit, grunt, and compass. The appkit ships with support of compass out of the box via grunt-contrib-compass but I can't figure out for the life of me how to install Zurb-Foundation, or at least…
I am working on an existing project to replace bower with yarn and upgrading angularjs from 1.2.9 to 1.3.0
I've got it working on my local system but it fails on jenkins when running deploy grunt task with a filepath issue, the weird thing is on…
I have all my sass files in main.css which is being compiled by grunt.
The structure is as follows:
main.scss
/* Extended CSS */
@import '_extend.scss';
/* Generic CSS */
@import 'general.scss';
/* View based CSS */
@import…
It seems that my grunt-contrib-compass is not working as it should,
I'm trying to use:
grunt compass:dev
And the output is:
Running "compass:dev" (compass) task
But nothing happen at all, and I got no errors neither
On my Gruntfile.js I…
I'm new to Grunt – loving it so far (bye bye Codekit) – but I'm having an issue where the output of any compass url helpers (image-url(), font-url()) contains the incorrect path. Here is my gruntfile;
module.exports = function (grunt) {
…
I've added bootstrap-sass into my project and import it to my application.scss file like this
@
import "../bower_components/bootstrap-sass/assets/stylesheets/_bootstrap-compass";
.bootstrap{
@import…
I'm trying to use grunt-contrib-compass for an AngularJS project with multiple app folders. Here is my basic directory structure:
/root
/appA
/appB
...
/appX
/public
/modules
/moduleName
…
I have a grunt configuration which currently have watch and compass modules configured. But when i update any scss file, I am getting message:
Running "compass:dist" (compass) task
and nothing happens from that point. Files will not be compiled. It…
I'm using grunt-contrib-compass to compile my SCSS files, and here's the Gruntfile configuration for the same.
compass: {
dist: {
options: {
watch: true,
imagesDir: 'web/assets/img',
…
I recently changed my mac. I used to worked with grunt and grunt-contrib-compass without issues but since i changed, compass doesn't work anymore.
I installed every tools i needed (ruby, compass, sass, xcode, command line tools, grunt ,etc ..) and…
This is my Gruntfile.js(part of it) that has the code for compass directories as you can see bellow :
compass: {
dist: {
options: {
sassDir: '*/docs/scss/*.scss',
cssDir: '*/css/*.css',
outputStyle:…
i am trying to write a grunt script to watch and compile my sass files. I have decided that i would do it with grunt-sass instead of the usual grunt-contrib-sass simply because i don't have to worry about installing Ruby and all the gems on my PC…
So my production project path is different than my dev one. Therefore I have to edit the assets path in the compass config:
httpFontsPath: '/different/path/styles/fonts'
However, the built css file looks like…
I am using Compass through grunt to compile a SASS file. My directory structure looks like this:
project/
Gruntfile.js
package.json
sass/
part1/
part1.sass
css/
And my Gruntfile.js:
grunt.initConfig({
pkg:…