-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
[Feature request] Make it more powerful #2
Comments
Hi BachiMjavanadze. In conclusion, your feature request is rejected.
We apologize for not meeting your expectations. Thanks for reporting the issue. |
No more questions. Close it |
…vely (Reflects from part of issue #2).
I have been looking for a normal extension for the terminal for a long time but did not find it. Script Runner suits my needs more or less. I wrote to the author what needs to be corrected and added, but he does not answer. Can you please look at my feature requests and add them to your extension?
Here is my settings (in
settings.json
) for theScript Runner
(I'm on Windows, commands are forcmd
orpowershell
):"script-runner.statusBar": true, "script-runner.definitions": { "variables": { "$path": "D:\\Documents\\Development", }, "commands": [ { "identifier": "Angular 1", "description": "Angular - create project + ESlint + CSS", "command": "ng new $var1 --style=css --routing=false; cd $var1; ng add @angular-eslint/schematics --skip-confirmation=true; ng lint; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] }, { "identifier": "Angular 2", "description": "Angular - create project + ESlint + CSS + Routing", "command": "ng new $var1 --style=css --routing=true; cd $var1; ng add @angular-eslint/schematics --skip-confirmation=true; ng lint; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] }, { "identifier": "Angular 3", "description": "Angular - create project + ESlint + SCSS", "command": "ng new $var1 --style=scss --routing=false; cd $var1; ng add @angular-eslint/schematics --skip-confirmation=true; ng lint; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] }, { "identifier": "Angular 4", "description": "Angular - create project + ESlint + SCSS + Routing", "command": "ng new $var1 --style=scss --routing=true; cd $var1; ng add @angular-eslint/schematics --skip-confirmation=true; ng lint; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] }, { "identifier": "Angular 5", "description": "Angular - create project (interactive mode)", "command": "ng new $var1 --style=$var2 --routing=$var3; cd $var1; ng add @angular-eslint/schematics --skip-confirmation=true; ng lint; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" }, { "variable": "$var2", "question": "CSS or SCSS?", "options": [ "css", "scss" ] }, { "variable": "$var3", "question": "Install roating?", "options": [ "true", "false" ] } ] }, { "identifier": "C# - console", "description": "C# - create new console project", "command": "dotnet new console -o $var1; cd $var1; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] }, { "identifier": "C# - asp.net", "description": "C# - create new asp.net", "command": "dotnet new web -o $var1; cd $var1; code -r .", "working_directory": "$path", "form": [ { "variable": "$var1", "question": "Project name" } ] } ] },
The text was updated successfully, but these errors were encountered: