Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(docs): use source rather than combined js
Browse files Browse the repository at this point in the history
Using source allows us to use the fileInfo to determine the path of the
component/service being documented.
  • Loading branch information
matthewrfindley authored and ThomasBurleson committed May 22, 2015
1 parent e92686f commit fd8fcf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ module.exports = new Package('angular-md', [
.config(function(readFilesProcessor, writeFilesProcessor) {
readFilesProcessor.basePath = projectPath;
readFilesProcessor.sourceFiles = [
{ include: 'dist/angular-material.js', basePath: 'dist' },
{ include: 'src/components/**/*.js', basePath: '.' },
{ include: 'src/core/**/*.js', basePath: '.' },
{ include: 'docs/content/**/*.md', basePath: 'docs/content', fileReader: 'ngdocFileReader' }
];

Expand Down

0 comments on commit fd8fcf2

Please sign in to comment.