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
type
Describe the bug Lage doesn't run root level dependency target when without specified type: "npmScript".
type: "npmScript"
To Reproduce
Code:
// root package.json "scripts": { "lage": "lage", "touch-foo": "touch foo.js" }, // lage.config.js pipeline: { "#touch-foo": [], lint: ["#touch-foo"],
Running lage --verbose --no-cache lint outputs:
lage --verbose --no-cache lint
<root> touch-foo ➔ start <root>touch-foo ✓ done - 0.14s
But foo.js is never created. It works when I add an explicit type: "npmScript"
foo.js
Expected behavior Target should have a default type npmScript or just fail with a clear error message.
npmScript
Environment/Troubleshooting Please paste in the result of npx envinfo to help identify your run time environment
npx envinfo
If this is an issue with run order of tasks, please paste in the result of lage info [your command(s)] [options]
lage info [your command(s)] [options]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Lage doesn't run root level dependency target when without specified
type: "npmScript"
.To Reproduce
Code:
Running
lage --verbose --no-cache lint
outputs:But
foo.js
is never created. It works when I add an explicittype: "npmScript"
Expected behavior
Target should have a default type
npmScript
or just fail with a clear error message.Environment/Troubleshooting
Please paste in the result of
npx envinfo
to help identify your run time environmentIf this is an issue with run order of tasks, please paste in the result of
lage info [your command(s)] [options]
The text was updated successfully, but these errors were encountered: