Procházet zdrojové kódy

Fixed compile scripts for non-coffee modules (#717)

Miguel Serrano před 6 roky
rodič
revize
abc031efd0
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      bin/compile-services

+ 3 - 3
bin/compile-services

@@ -12,11 +12,11 @@ grep 'name:' config/services.js | \
 			web)
 				npm run webpack:production
 				;;
-			chat|filestore|notifications|tags)
-				echo "$service doesn't require a compilation"
+			real-time|document-updater)
+				npm run compile:all
 				;;	
 			*)
-				npm run compile:all
+				echo "$service doesn't require a compilation"
 				;;
 		esac	
 		popd