Skip to content

Commit

Permalink
fix: Use text script rather than fixed script paths (#789)
Browse files Browse the repository at this point in the history
## Description

The `melos` executable path could be changed due to environment updates.
Using a text script and letting the configuration run in the terminal
can reduce the pain of checking out these configurations into version
control.

## Type of Change

- [x] 🛠️ `fix` -- Bug fix (non-breaking change which fixes an issue)
  • Loading branch information
AlexV525 authored Nov 14, 2024
1 parent 0572dba commit bc2da5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!-- Generated by Melos -->
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="{{#scriptName}}" type="ShConfigurationType">
<option name="EXECUTE_SCRIPT_FILE" value="false" />
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
<option name="SCRIPT_PATH" value="{{#scriptPath}}" />
<option name="SCRIPT_OPTIONS" value="{{#scriptArgs}}" />
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="false" />
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<option name="SCRIPT_TEXT" value="melos {{#scriptArgs}}" />
<method v="2" />
</configuration>
</component>

0 comments on commit bc2da5f

Please sign in to comment.