-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Align project file structure with software suite #417
Align project file structure with software suite #417
Conversation
c0f7b51
to
1ab5692
Compare
@@ -25,7 +25,7 @@ describe("All Projects", () => { | |||
)("Builtin %s", async (chipName) => { | |||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | |||
// @ts-ignore | |||
const ChipProject = ChipProjects[project]?.CHIPS[chipName]; | |||
const ChipProject = ChipProjects[project]?.CHIPS; | |||
let hdlFile: string = ChipProject?.[`${chipName}.hdl`]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can drop the ?. access as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I meant below in the ChipProject?. parts
da3d0a5
to
84ad58e
Compare
@@ -25,7 +25,7 @@ describe("All Projects", () => { | |||
)("Builtin %s", async (chipName) => { | |||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | |||
// @ts-ignore | |||
const ChipProject = ChipProjects[project]?.CHIPS[chipName]; | |||
const ChipProject = ChipProjects[project]?.CHIPS; | |||
let hdlFile: string = ChipProject?.[`${chipName}.hdl`]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I meant below in the ChipProject?. parts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(wrong button)
fb9f353
to
edf0325
Compare
No description provided.