A Hyper extension to run scripts from arguments in command line.
npm install hyper-scripts-attr
/your_hyper_app_dir/hyper.exe --script "npm help"
`
or
`
/your_hyper_app_dir/hyper.exe d:/something_dir/ --script "npm run dev"
`
The second argument after "--script" will be executed by the HYPER after his launch.
p.s. sorry for my english :)
install
`
hyper i hyper-scripts-attr
`
setup
In your .hyper.js...
`
module.exports = {
...
plugins: ["hyper-scripts-attr"],
...
};
``