-
Notifications
You must be signed in to change notification settings - Fork 1k
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
TypeScript Checking Issues #3142
Comments
@melloware I checked out the version that's failing on Github actions. On my Ubuntu machine, I can reproduce the failure when running As you've guessed, it's because Windows treats file names case insensitively, while MacOS/Linux does not. For example, the file {
"main": "./csstransition.cjs.js",
"module": "./csstransition.esm.js",
"unpkg": "./csstransition.min.js",
"types": "./csstransition.d.ts"
} The
The |
OK that is what I thought should happen but wanted a second set of eyes on it. Much appreciated for your opinion! |
cc @blutorange
Issue TypeScript check on build
OK so I have added a new script so we can do Typescript compilation checking on the build or running
npm run type-check
When I run
npm run type-check
on Windows the TSC works fine and all checks pass. However when it runs on GitHub Actions it fails with...On Windows I had to set this to
false
to make it work but it seems this may be messing up on Linux.forceConsistentCasingInFileNames": false,
How do we fix this?
The text was updated successfully, but these errors were encountered: