Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 23f0d0f

Browse files
authored
fix(common): remove internal monicker for FileLoader (#1009)
* this causes issues with bundling, and is not needed since the export is already "private"
1 parent 5361a66 commit 23f0d0f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

modules/common/src/common-engine/file-loader.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
import * as fs from 'fs';
99
import { ResourceLoader } from '@angular/compiler';
1010

11-
/**
12-
* ResourceLoader implementation for loading files
13-
* @internal
14-
*/
11+
/** ResourceLoader implementation for loading files */
1512
export class FileLoader implements ResourceLoader {
1613
get(url: string): Promise<string> {
1714
return new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)