Browse Source

Fix aliasing with aliasify (#23)

* fix missing aliasify transform.

* fix order of transforms. babelify -> aliasify -> verify
pull/25/head
Thorsten Lünborg 9 years ago
committed by GitHub
parent
commit
34f81b29a0
  1. 9
      template/package.json

9
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}}

Loading…
Cancel
Save