From 93fa2ecd36644359e68f39c3ac7b46b8fbcdc342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20C=C3=A1ceres?= Date: Mon, 12 Feb 2018 16:15:25 +1100 Subject: [PATCH] fix(tools/release): use build:components instead The hb:build command is no longer available. --- tools/release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release.js b/tools/release.js index 4a08b77c76..7652d018e0 100755 --- a/tools/release.js +++ b/tools/release.js @@ -393,7 +393,7 @@ const run = async () => { // 3. Run the build script (node tools/build-w3c-common.js). indicators.get("build-merge-tag").show(); - await npm("run hb:build"); + await npm("run build:components"); await Builder.build({ name: "w3c-common" }); app.use(express.static(dir)); app.listen(port);