Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/selfrefactor/niketa-vscode-extension
Request to run scripts defined in `package.json`
https://github.com/selfrefactor/niketa-vscode-extension
autorun cli coverage coverage-percentages electron jest vscode vscode-extension wallabyjs
Last synced: about 1 month ago
JSON representation
Request to run scripts defined in `package.json`
- Host: GitHub
- URL: https://github.com/selfrefactor/niketa-vscode-extension
- Owner: selfrefactor
- License: mit
- Created: 2018-10-25T07:54:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-26T07:22:23.000Z (10 months ago)
- Last Synced: 2024-03-26T07:45:05.103Z (8 months ago)
- Topics: autorun, cli, coverage, coverage-percentages, electron, jest, vscode, vscode-extension, wallabyjs
- Language: JavaScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=selfrefactor.niketa-vscode-extension
- Size: 3.39 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Niketa tools
It expects this in `package.json`
```
"niketaScripts": {
"fileCommands": {
"**/*.js": "yarn lint:file"
},
"testCommands": {
"**/*.js": "yarn jest:file"
}
},
```In this case, when pressing `ctrl+1`, it will run `yarn lint:file` with the current path as additional argument.
When pressing `alt+w`, it will run `yarn run:file` with the current path as additional argument.