From 43d81f5cd954d163e3a1f6be206b3a17936021df Mon Sep 17 00:00:00 2001 From: dkanada Date: Tue, 17 Mar 2020 01:02:11 +0900 Subject: [PATCH] update cache and add prepare --- .ci/azure-pipelines.yml | 5 +---- package.json | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 13970939c0..de7780f672 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -39,14 +39,11 @@ jobs: displayName: 'Check Cache' inputs: key: 'yarn | yarn.lock' - path: '$(Pipeline.Workspace)/node_modules' + path: 'node_modules' - script: 'yarn install' displayName: 'Install Dependencies' - - script: 'ls -al $(Pipeline.Workspace)' - displayName: 'Output Files' - - script: 'yarn build' displayName: 'Build Development' condition: eq(variables['BuildConfiguration'], 'development') diff --git a/package.json b/package.json index 5ad70cacdf..7ec376e74b 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ ], "scripts": { "serve": "gulp serve", - "build": "gulp", + "prepare": "gulp --bundle", "build development": "gulp --development", "build bundle": "gulp --bundle", "build standalone": "gulp --standalone",