Last active
June 20, 2016 09:06
-
-
Save FDiskas/b3975b1296256d377f0cd8e58a9709c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var kss = require('kss'); | |
var config = { path: { dest: './dist', src: './src' } }; | |
gulp.task('styleguide', function(){ | |
return kss({ | |
"source": [ | |
config.path.src + "/sass" | |
], | |
"destination": config.path.dest + "/styleguide/", | |
"css": [ | |
"../css/main.css" | |
], | |
"js": [ | |
"../js/main.js" | |
] | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "", | |
"version": "0.0.1", | |
"description": "", | |
"main": "gulpfile.js", | |
"author": "NFQ", | |
"license": "MIT", | |
"devDependencies": { | |
"kss": "^3.0.0-beta.14" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment