From d6ab3cda0aa067a4df7ee5ec6125622cd57d0794 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 10 Dec 2020 12:49:57 +0200 Subject: [PATCH] .drone.yml: Correct npm task --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0605df7..250e627 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ steps: image: node:10-alpine commands: - npm install - - npm run dist + - npm run build --- kind: pipeline @@ -19,7 +19,7 @@ steps: image: node:12-alpine commands: - npm install - - npm run dist + - npm run build --- kind: pipeline @@ -31,4 +31,4 @@ steps: image: node:14-alpine commands: - npm install - - npm run dist + - npm run build