Skip to content

Commit

Permalink
Don't extract pipelines from entry specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Binns-Smith committed Nov 14, 2019
1 parent 2e1e056 commit c3ee1c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/core/src/ResolverRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class ResolverRunner {
let pipeline;
let filePath;
let validPipelines = new Set(this.config.getNamedPipelines());
if (dependency.moduleSpecifier.includes(':')) {
if (!dependency.isEntry && dependency.moduleSpecifier.includes(':')) {
[pipeline, filePath] = dependency.moduleSpecifier.split(':');
if (!validPipelines.has(pipeline)) {
if (dep.isURL) {
Expand Down

0 comments on commit c3ee1c0

Please sign in to comment.