Skip to content

Commit

Permalink
fix(showcase): correct import from @angular to @sbb-esta (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyubisation authored Sep 19, 2019
1 parent d97749a commit fac7916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class EntryPointGrouper implements Processor {
const packageName = moduleInfo.packageName;
const packageDisplayName = packageName === 'cdk' ? 'CDK' : 'Material';

const moduleImportPath = `@angular/${packageName}/${moduleInfo.entryPointName}`;
const moduleImportPath = `@sbb-esta/${packageName}/${moduleInfo.entryPointName}`;
const entryPointName = packageName + '-' + moduleInfo.name;

// Compute a public URL that refers to the document. This is helpful if we want to
Expand Down
2 changes: 1 addition & 1 deletion schematics/documentation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ class EntryPointGrouper {
const moduleInfo = getModulePackageInfo(doc);
const packageName = moduleInfo.packageName;
const packageDisplayName = packageName === 'cdk' ? 'CDK' : 'Material';
const moduleImportPath = `@angular/${packageName}/${moduleInfo.entryPointName}`;
const moduleImportPath = `@sbb-esta/${packageName}/${moduleInfo.entryPointName}`;
const entryPointName = packageName + '-' + moduleInfo.name;
// Compute a public URL that refers to the document. This is helpful if we want to
// make references to other API documents. e.g. showing the extended class.
Expand Down

0 comments on commit fac7916

Please sign in to comment.