mirror of
https://github.com/koel/koel.git
synced 2026-04-26 09:15:59 +03:00
[GH-ISSUE #1131] run php artisan koel:init, i got this: sass@1.22.10: The engine "node" is incompatible with this module. Expected version ">=8.9.0". Got "6.17.1" #656
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#656
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @miracle2017 on GitHub (Nov 30, 2019).
Original GitHub issue: https://github.com/koel/koel/issues/1131
Describe the bug
when i run php artisan koel:init, i got this: sass@1.22.10: The engine "node" is incompatible with this module. Expected version ">=8.9.0". Got "6.17.1"
Environment
@miracle2017 commented on GitHub (Nov 30, 2019):
yarn install --ignore-engines, with --ignore-engines, yarn will not checkout your node engine. so you can add this param at app/Console/Commands/InitCommand.php file, then you serch " yarn install", then you find two match, now you just add --ignore-engines to it and save, then run php artisan koel:init again, this time the error was gone. it work for me
@phanan commented on GitHub (Nov 30, 2019):
Ignoring engines is hardly a good idea. It's better to use a more recent Node version (6.x is too old I'm surprised it worked for you).