sassgraph 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #!/usr/bin/env node
  2. var fs = require('fs');
  3. var path = require('path');
  4. var command, directory, file;
  5. var yargs = require('yargs')
  6. .usage('Usage: $0 <command> [options] <dir> [file]')
  7. // .demand(1)
  8. .command('ancestors', 'Output the ancestors')
  9. .command('descendents', 'Output the descendents')
  10. .example('$0 ancestors -I src src/ src/_footer.scss', 'outputs the ancestors of src/_footer.scss')
  11. .option('I', {
  12. alias: 'load-path',
  13. default: [process.cwd()],
  14. describe: 'Add directories to the sass load path',
  15. type: 'array',
  16. })
  17. .option('e', {
  18. alias: 'extensions',
  19. default: ['scss', 'sass'],
  20. describe: 'File extensions to include in the graph',
  21. type: 'array',
  22. })
  23. .option('f', {
  24. alias: 'follow',
  25. default: false,
  26. describe: 'Follow symbolic links',
  27. type: 'bool',
  28. })
  29. .option('j', {
  30. alias: 'json',
  31. default: false,
  32. describe: 'Output the index in json',
  33. type: 'bool',
  34. })
  35. .version()
  36. .alias('v', 'version')
  37. .help('h')
  38. .alias('h', 'help');
  39. var argv = yargs.argv;
  40. if (argv._.length === 0) {
  41. yargs.showHelp();
  42. process.exit(1);
  43. }
  44. if (['ancestors', 'descendents'].indexOf(argv._[0]) !== -1) {
  45. command = argv._.shift();
  46. }
  47. if (argv._.length && path.extname(argv._[0]) === '') {
  48. directory = argv._.shift();
  49. }
  50. if (argv._.length && path.extname(argv._[0])) {
  51. file = argv._.shift();
  52. }
  53. try {
  54. if (!directory) {
  55. throw new Error('Missing directory');
  56. }
  57. if (!command && !argv.json) {
  58. throw new Error('Missing command');
  59. }
  60. if (!file && (command === 'ancestors' || command === 'descendents')) {
  61. throw new Error(command + ' command requires a file');
  62. }
  63. var loadPaths = argv.loadPath;
  64. if(process.env.SASS_PATH) {
  65. loadPaths = loadPaths.concat(process.env.SASS_PATH.split(/:/).map(function(f) {
  66. return path.resolve(f);
  67. }));
  68. }
  69. var graph = require('../').parseDir(directory, {
  70. extensions: argv.extensions,
  71. loadPaths: loadPaths,
  72. follow: argv.follow,
  73. });
  74. if(argv.json) {
  75. console.log(JSON.stringify(graph.index, null, 4));
  76. process.exit(0);
  77. }
  78. if (command === 'ancestors') {
  79. graph.visitAncestors(path.resolve(file), function(f) {
  80. console.log(f);
  81. });
  82. }
  83. if (command === 'descendents') {
  84. graph.visitDescendents(path.resolve(file), function(f) {
  85. console.log(f);
  86. });
  87. }
  88. } catch(e) {
  89. if (e.code === 'ENOENT') {
  90. console.error('Error: no such file or directory "' + e.path + '"');
  91. }
  92. else {
  93. console.log('Error: ' + e.message);
  94. }
  95. // console.log(e.stack);
  96. process.exit(1);
  97. }