Skip to content
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

CI/Build Issue #2418

Open
DanielMcAssey opened this issue Dec 18, 2023 · 10 comments
Open

CI/Build Issue #2418

DanielMcAssey opened this issue Dec 18, 2023 · 10 comments
Assignees

Comments

@DanielMcAssey
Copy link
Contributor

Just had a look at the latest .tar.gz after the fixes for the types, it looks like the index.d.ts did not get re-generated, or its cached?

Also the types/auto directory is still there.

Specifically this version: https://github.com/jitsi/lib-jitsi-meet/releases/tag/v1745.0.0%2B47fc0fbb

@DanielMcAssey
Copy link
Contributor Author

Just had a look, need a few more changes to the type generation, theres an issue with inferring types.

Not sure why the auto directory is still there though

@DanielMcAssey
Copy link
Contributor Author

Issue with typescript on generating types that override the constructor, microsoft/TypeScript#53266

@DanielMcAssey
Copy link
Contributor Author

DanielMcAssey commented Dec 18, 2023

@saghul seems to fix the constructor typescript generate problem, we need to upgrade typescript 1 major version to at least 5.1.3 (The first version to include that fix). Ideally to the latest 5.3.3, am I okay to create a PR that does this?

For reference this is the last outstanding issue:

Error: node_modules/lib-jitsi-meet/index.d.ts:3120:20 - error TS1005: '(' expected.

3120         constructor: typeof JitsiTrackError;
                        ~


Error: node_modules/lib-jitsi-meet/index.d.ts:13842:20 - error TS1005: '(' expected.

13842         constructor: typeof JitsiConference;
                         ~

Because of:

JitsiConference.prototype.constructor = JitsiConference;

and
JitsiTrackError.prototype.constructor = JitsiTrackError;

@saghul
Copy link
Member

saghul commented Dec 18, 2023

Just had a look at the latest .tar.gz after the fixes for the types, it looks like the index.d.ts did not get re-generated, or its cached?

We use a prepare script:

"prepack": "npm run build && npm run gen-types",
I wonder if we need to delete the file before running it?

Also the types/auto directory is still there.

That must be because we don't clean the directory. @damencho Can we perhaps add a git clean -dfx before we start the build process? I forgot where that script is.

@saghul
Copy link
Member

saghul commented Dec 18, 2023

am I okay to create a PR that does this?

Absolutely!

@damencho
Copy link
Member

That must be because we don't clean the directory. @damencho Can we perhaps add a git clean -dfx before we start the build process? I forgot where that script

On ci, there is a build job.

@damencho
Copy link
Member

Let's extract whatever we can from there and add it as a script here, the way we have it already for jibri and jvb.

@saghul
Copy link
Member

saghul commented Dec 18, 2023

Not sure I follow.

@damencho
Copy link
Member

@damencho
Copy link
Member

We have similar for jvb
https://github.com/jitsi/jitsi-videobridge/tree/master/resources/jenkins

We have been doing that for every project that we move to the new version with the git hash, that is the plan and for jitsi-meet for the last 5 years :) One day ...

@saghul saghul self-assigned this Dec 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants