зеркало из https://github.com/telerik/dss.git
Merge pull request #18 from darcyclarke/develop
Fixed up gruntfile and modified parser slightly
This commit is contained in:
Коммит
005ac0a740
|
@ -13,7 +13,9 @@ module.exports = function(grunt) {
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
DSS: {
|
DSS: {
|
||||||
options: {
|
options: {
|
||||||
location: __dirname + '/example/'
|
location: process.cwd(),
|
||||||
|
output: process.cwd() + '/docs/',
|
||||||
|
template: process.cwd() + '/template/'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -34,7 +34,7 @@ module.exports = function(grunt) {
|
||||||
// Store reference
|
// Store reference
|
||||||
var _dss = function(){};
|
var _dss = function(){};
|
||||||
|
|
||||||
// Detect
|
// Default detect function
|
||||||
_dss.detect = function(){
|
_dss.detect = function(){
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
@ -404,6 +404,8 @@ module.exports = function(grunt) {
|
||||||
length = files.length,
|
length = files.length,
|
||||||
styleguide = [];
|
styleguide = [];
|
||||||
|
|
||||||
|
// TODO: location is usless, grunt expand may not be what I need
|
||||||
|
|
||||||
// Parse files
|
// Parse files
|
||||||
files.map(function(filename){
|
files.map(function(filename){
|
||||||
|
|
||||||
|
@ -416,8 +418,6 @@ module.exports = function(grunt) {
|
||||||
// Add comment block to styleguide
|
// Add comment block to styleguide
|
||||||
styleguide.push(parsed);
|
styleguide.push(parsed);
|
||||||
|
|
||||||
console.log(JSON.stringify(styleguide));
|
|
||||||
|
|
||||||
// Check if we're done
|
// Check if we're done
|
||||||
if(length > 1){
|
if(length > 1){
|
||||||
|
|
||||||
|
@ -425,6 +425,7 @@ module.exports = function(grunt) {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
// Set output directories
|
// Set output directories
|
||||||
template_dir = template_dir || '../template';
|
template_dir = template_dir || '../template';
|
||||||
output_dir = output_dir || 'styleguide';
|
output_dir = output_dir || 'styleguide';
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
||||||
<title>{{project.name}} Styleguide</title>
|
<title>{{project.name}} styleguide</title>
|
||||||
<link rel="stylesheet" href="assets/css/styles.css" type="text/css" />
|
<link rel="stylesheet" href="assets/css/styles.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче