Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Toolchain
sgc
Commits
50dbd142
Commit
50dbd142
authored
Jan 08, 2015
by
Philipp Nowinski
Browse files
[BUGFIX] correct path to config.rb
parent
9a3acb3c
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/index.js
View file @
50dbd142
...
...
@@ -119,7 +119,7 @@ module.exports = yeoman.generators.Base.extend((function() {
Generator
.
writeCompassConfig
=
function
()
{
this
.
fs
.
copyTpl
(
this
.
templatePath
(
'
_config.rb
'
),
this
.
destinationPath
(
answers
.
compassConfigPath
+
'
/
.
config.rb
'
),
this
.
destinationPath
(
answers
.
compassConfigPath
+
'
/config.rb
'
),
answers
);
};
...
...
app/templates/gulp/css.js
View file @
50dbd142
...
...
@@ -11,7 +11,7 @@ var gulp = require('gulp'),
gulp
.
task
(
'
css
'
,
function
()
{
return
gulp
.
src
(
settings
.
path
.
sass
+
'
/**/*.scss
'
)
.
pipe
(
compass
({
config_file
:
settings
.
path
.
compassConfig
,
config_file
:
settings
.
path
.
compassConfig
+
'
/config.rb
'
,
sourcemap
:
true
,
css
:
settings
.
path
.
css
,
sass
:
settings
.
path
.
sass
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment