Edit: got my issue figured out, the paths had to be like this:
i guess you have to link directly to the SCSS files. makes sense.
=================
original post:
=================
I'm trying to automate my workflow with bower and gulp. Right now I'm still on the bower part trying to get SASS to work with it. i think I understand bower correctly because i got everything i need installed to the bower_components folder but my SCSS file is telling me those components aren't found.
and here is what i have in the SCSS file
kinda frustrating and im not sure what im doing wrong.
Did you try uninstalling? "npm uninstall angular"
Code:
@import "../bower_components/susy/sass/susy";
@import "../bower_components/breakpoint-sass/stylesheets/breakpoint";
i guess you have to link directly to the SCSS files. makes sense.
=================
original post:
=================
I'm trying to automate my workflow with bower and gulp. Right now I'm still on the bower part trying to get SASS to work with it. i think I understand bower correctly because i got everything i need installed to the bower_components folder but my SCSS file is telling me those components aren't found.
and here is what i have in the SCSS file
Code:
@import '../bower_components/susy';
@import '../bower_components/breakpoint-sass';
kinda frustrating and im not sure what im doing wrong.
I am having a huge problem with AngularJS using the command: npm install
The installation froze so I had to close the Terminal.
Now when I tried to use "npm install" again, I get this error message:
npm ERR! install Couldn't read dependencies
npm ERR! package.json ENOENT, open '/Users/tripham/angularjs_projects/package.json'
npm ERR! package.json This is most likely not a problem with npm itself.
npm ERR! package.json npm can't find a package.json file in your current directory.
npm ERR! System Darwin 13.2.0
npm ERR! command "node" "/usr/local/bin/npm" "install"
npm ERR! cwd /Users/tripham/angularjs_projects
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
npm ERR! path /Users/tripham/angularjs_projects/package.json
npm ERR! code ENOPACKAGEJSON
npm ERR! errno 34
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /Users/tripham/angularjs_projects/npm-debug.log
npm ERR! not ok code 0
Help!
Did you try uninstalling? "npm uninstall angular"