From 34f81b29a084154558de02c5c35ee62242fd2175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20L=C3=BCnborg?= Date: Thu, 20 Oct 2016 22:52:04 +0200 Subject: [PATCH] Fix aliasing with aliasify (#23) * fix missing aliasify transform. * fix order of transforms. babelify -> aliasify -> verify --- template/package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/template/package.json b/template/package.json index a68cfcb..187417d 100644 --- a/template/package.json +++ b/template/package.json @@ -17,14 +17,17 @@ }, "browserify": { "transform": [ - "vueify", - "babelify" + "babelify", + {{#if_eq build "standalone"}} + "aliasify", + {{/if_eq}} + "vueify" ] }, {{#if_eq build "standalone"}} "aliasify": { "aliases": { - "vue": "vue/dist/vue" + "vue$": "vue/dist/vue" } }, {{/if_eq}}