-
Notifications
You must be signed in to change notification settings - Fork 152
VueJS Generating Empty file #120
Comments
Are you maybe using the standalone build ( Then read this: https://github.com/vuejs/vue/wiki/Vue-2.0-RC-Starter-Resources#standalone-vs-runtime-builds |
@LinusBorg We do not use the standalone version. We use vueify which builds our code. However the code seems to still be empty. If you take a look at |
Can you post your |
import Vue from 'vue';
import electron from 'vue-electron';
import resource from 'vue-resource';
import App from './app.vue';
import 'materialize-css';
Vue.use(electron);
Vue.use(resource);
Vue.config.debug = true;
/* eslint-disable no-new */
new Vue({
el: 'body',
components: {App}
}); |
Looks fine, the problem must be somewhere else. Unfortunately, gulp setups are not my strong suit. |
Well I mean the |
UPDATE 08/22/16 |
@ProjectBarks, do you remember what you did to fix this? I'm having the same issue. |
Initial Context #118
Hi I would like to open this issue backup @LinusBorg and @yyx990803. So after some more changes to the code the build ended up failing again. It was working for a bit but I realized that when it was working it wasn't importing everything so the entire
components/
directory was not being included. Furthermore, after some more changes to the core code vueify is not generating anything at all. The link to the repository is here if you would like to take a look. The file I am using to test istest.js
. And all I do is runnode test.js
and after it executes I look at the results inbuild/bundle.js
and for some reason there appears to be an empty file and nothing else. Any insight would be great!test.js
Let me know if you guys need anything else.
The text was updated successfully, but these errors were encountered: