We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a2cc4e commit aa6c0d2Copy full SHA for aa6c0d2
src/environment-base.ts
@@ -209,6 +209,10 @@ export default class EnvironmentBase extends EventEmitter implements BaseEnviron
209
this.alias(/^([^:]+)$/, '$1:app');
210
}
211
212
+ findFeature(featureName: string): any[] {
213
+ return this.composedStore.findFeature(featureName);
214
+ }
215
+
216
async applyTransforms(transformStreams: FilePipelineTransform[], options: ApplyTransformsOptions = {}): Promise<void> {
217
const {
218
streamOptions = { filter: file => isFilePending(file) },
0 commit comments