add npm run dev:docs consistent readme with instantsearch.js move to docsearch.js What do you think?
14 lines
272 B
Bash
Executable file
14 lines
272 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
npm run build:css
|
|
|
|
# /bundle.js in memory
|
|
webpack-dev-server \
|
|
--config webpack.dev.config.babel.js \
|
|
--hot \
|
|
--inline \
|
|
--no-info & \
|
|
# rebuild docsearch.css and docsearch.min.css
|
|
onchange './src/styles/*.scss' -- npm run build:css & \
|
|
|
|
wait
|