Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 81b404e

Browse files
tungdnchanged
authored andcommitted
fix: Entry point in Quantum builds (#1387)
fixes #1206
1 parent 9c75272 commit 81b404e

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/quantum/plugin/QuantumCore.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,8 @@ export class QuantumCore {
210210
}
211211

212212
public prepareFiles(bundleAbstraction: BundleAbstraction) {
213-
// set ids first
214-
let entryId;
215-
if (this.producer.entryPackageFile && this.producer.entryPackageName) {
216-
entryId = `${this.producer.entryPackageName}/${this.producer.entryPackageFile}`;
217-
}
218-
219213
bundleAbstraction.packageAbstractions.forEach(packageAbstraction => {
214+
let entryId = `${this.producer.entryPackageName}/${packageAbstraction.entryFile}`
220215
packageAbstraction.fileAbstractions.forEach((fileAbstraction, key: string) => {
221216
let fileId = fileAbstraction.getFuseBoxFullPath();
222217
const id = this.index;

0 commit comments

Comments
 (0)