From ef7bd514c2797012b011f89bdafdfafef0a26a45 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 18 May 2019 16:07:06 +0100 Subject: [PATCH] Add dev and development scripts --- wp-content/themes/twentynineteen-tailwindcss/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-content/themes/twentynineteen-tailwindcss/package.json b/wp-content/themes/twentynineteen-tailwindcss/package.json index 79f5e42..27157b9 100644 --- a/wp-content/themes/twentynineteen-tailwindcss/package.json +++ b/wp-content/themes/twentynineteen-tailwindcss/package.json @@ -2,6 +2,8 @@ "private": true, "scripts": { "build": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", + "dev": "npm run build", + "development": "npm run build", "prod": "npm run production", "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "watch": "npm run build -- --watch"