https://github.com/joutvhu/dart-scripts
IntelliJ plugin to run scripts on pubspec.yaml for Dart projects
https://github.com/joutvhu/dart-scripts
android-studio-plugin dart flutter ide intellij-plugin pubspec-yaml runner scripts
Last synced: 6 months ago
JSON representation
IntelliJ plugin to run scripts on pubspec.yaml for Dart projects
- Host: GitHub
- URL: https://github.com/joutvhu/dart-scripts
- Owner: joutvhu
- License: apache-2.0
- Created: 2022-03-04T17:59:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-17T18:03:52.000Z (6 months ago)
- Last Synced: 2025-04-18T02:45:09.524Z (6 months ago)
- Topics: android-studio-plugin, dart, flutter, ide, intellij-plugin, pubspec-yaml, runner, scripts
- Language: Java
- Homepage: https://plugins.jetbrains.com/plugin/18726-dart-scripts-runner
- Size: 624 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Dart Scripts Runner


[](LICENSE)IntelliJ plugin to run scripts on pubspec.yaml for Dart projects
## Installation
Press `Ctrl+Alt+S` to open the IDE settings and select Plugins.
Search `Dart Scripts Runner` in the Marketplace and click `Install`.

## Using
Write your custom script in the `scripts` property of the `pubspec.yaml` file.

Dart Scripts Runner will add a run button on each script line.
Click that button to run the script.
## Example
```yaml
scripts:
# Without options:
# directory:
# terminal: false
pub_get: flutter pub get# With options
pod_install:
script: pod install # Script text (required)
directory: ./ios # Working directory (default: )
terminal: true # Should execute script in terminal? (default: false)
```