Skip to content

Commit aa6c0d2

Browse files
committed
expose findFeature
1 parent 6a2cc4e commit aa6c0d2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/environment-base.ts

+4
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@ export default class EnvironmentBase extends EventEmitter implements BaseEnviron
209209
this.alias(/^([^:]+)$/, '$1:app');
210210
}
211211

212+
findFeature(featureName: string): any[] {
213+
return this.composedStore.findFeature(featureName);
214+
}
215+
212216
async applyTransforms(transformStreams: FilePipelineTransform[], options: ApplyTransformsOptions = {}): Promise<void> {
213217
const {
214218
streamOptions = { filter: file => isFilePending(file) },

0 commit comments

Comments
 (0)