Ver Fonte

HUE-8856 [core] Add babelrc to the list of files to copy

Jean-Francois Desjeans Gauthier há 6 anos atrás
pai
commit
32a71507cb
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -212,7 +212,8 @@ install-env:
 	@echo --- Setting up Frontend assets
 	cp $(ROOT)/package.json $(INSTALL_DIR)
 	cp $(ROOT)/webpack.config*.js $(INSTALL_DIR)
-	$(MAKE) -C $(INSTALL_DIR) npm-install
+	cp $(ROOT)/.babelrc $(INSTALL_DIR)
+        $(MAKE) -C $(INSTALL_DIR) npm-install
 	@if [ "$(MAKECMDGOALS)" = "install" ]; then \
 	  $(MAKE) -C $(INSTALL_DIR) create-static; \
 	fi