Slide 30
Slide 30 text
"scripts": {
"start": [
"@composer install",
"cd mu-plugins && npm install && bower install && grunt",
"cd themes/cwp-theme && npm install && grunt"
],
"deploy": [
"@composer install --no-dev --optimize-autoloader",
"cd mu-plugins && npm install && bower install && grunt",
"cd themes/cwp-theme && npm install && grunt"
]
},
"scripts-descriptions": {
"start": "Initializes repo for development.",
"deploy": "Prepares the repo for deployment.
Installs with --no-dev and optimizes output etc."
}