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
It would be great to have a dependency check so we can avoid running into issues like #165
I would love to add the following code for dependency check.
@rkostrzewski @developit @lukeed any suggestions?
The text was updated successfully, but these errors were encountered:
For running the check we have two choices:
preact-cli
preact create my_app
In the first case, there might be users who maintain multiple node versions (like me :P) for various projects and that might become a problem
In the second case we can do it as a first step before executing the create command
create
Sorry, something went wrong.
You can run the same check at both points.
{ "postinstall": "node lib/check.js" }
And
// src/index.js const check = require('./lib/check'); let isValidNode = check(); if (!isValidNode) { return; // already logged } installHooks(); // continue...
No branches or pull requests
It would be great to have a dependency check so we can avoid running into issues like #165
I would love to add the following code for dependency check.
@rkostrzewski @developit @lukeed any suggestions?
The text was updated successfully, but these errors were encountered: