diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index de7780f672..a3426e0114 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -44,15 +44,15 @@ jobs: - script: 'yarn install' displayName: 'Install Dependencies' - - script: 'yarn build' + - script: 'yarn build:development' displayName: 'Build Development' condition: eq(variables['BuildConfiguration'], 'development') - - script: 'yarn build' + - script: 'yarn build:bundle' displayName: 'Build Bundle' condition: eq(variables['BuildConfiguration'], 'bundle') - - script: 'yarn build --standalone' + - script: 'yarn build:standalone' displayName: 'Build Standalone' condition: eq(variables['BuildConfiguration'], 'standalone') diff --git a/package.json b/package.json index 7ec376e74b..c4679e51e6 100644 --- a/package.json +++ b/package.json @@ -91,9 +91,9 @@ "scripts": { "serve": "gulp serve", "prepare": "gulp --bundle", - "build development": "gulp --development", - "build bundle": "gulp --bundle", - "build standalone": "gulp --standalone", + "build:development": "gulp --development", + "build:bundle": "gulp --bundle", + "build:standalone": "gulp --standalone", "lint": "eslint \"src\"", "stylelint": "stylelint \"src/**/*.css\"" }