From 6ac692dfaa13adad6ab95d266f9c85bd2f517387 Mon Sep 17 00:00:00 2001 From: Maciej Korsan Date: Thu, 6 Sep 2018 14:01:34 +0200 Subject: [PATCH] fix(template): removed yarn from hello project template --- .../template-project-hello/template/syncano/hello/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/template-project-hello/template/syncano/hello/package.json b/packages/template-project-hello/template/syncano/hello/package.json index 694789d4..8aa3ef29 100644 --- a/packages/template-project-hello/template/syncano/hello/package.json +++ b/packages/template-project-hello/template/syncano/hello/package.json @@ -2,11 +2,12 @@ "name": "hello", "version": "0.0.1", "license": "MIT", + "author": "Syncano", "dependencies": { "@syncano/core": "latest" }, "scripts": { - "build": "yarn && yarn run build:src && yarn run build:env", + "build": "npm install && npm run build:src && npm run build:env", "build:src": "sh ./bin/compile", "build:env": "sh ./bin/compile-env" },