We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to check for new packages to replace on pr using github action.
One approch is using JavaScript action. The main field in package.json is now a invalid path, But the packages list can be obtained by
import nolyfill from "nolyfill/dist/index.js"; // .... const packagesCoveredByNolyfill = await nolyfill.findPackagesCoveredByNolyfill(packageManager, projectPath);
But JavaScript action need to be bundled, once nolyfill is bundled, new nolyfill version will not be updated unless the JavaScript action is updated.
Another approch is runing cli in shell. Maybe a json output mode is needed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to check for new packages to replace on pr using github action.
One approch is using JavaScript action.
The main field in package.json is now a invalid path, But the packages list can be obtained by
But JavaScript action need to be bundled, once nolyfill is bundled, new nolyfill version will not be updated unless the JavaScript action is updated.
Another approch is runing cli in shell. Maybe a json output mode is needed.
The text was updated successfully, but these errors were encountered: