Skip to content

Commit

Permalink
Bug fix import object not used
Browse files Browse the repository at this point in the history
  • Loading branch information
dionmaicon committed Dec 20, 2019
1 parent 374675d commit 41f5e49
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion js/bootstrap/index.js
Expand Up @@ -95,7 +95,6 @@ const Index = class {
</template>
<script>
import { eventBus } from '../../main.js'
import { mapActions, mapGetters } from "vuex";
export default {
Expand Down
1 change: 0 additions & 1 deletion js/bootstrap/view.js
Expand Up @@ -55,7 +55,6 @@ const View = class {
</template>
<script>
import {eventBus} from '../../main.js';
import { get${capitalizedName} } from "@/services/${this.modelName}";
export default {
Expand Down
9 changes: 9 additions & 0 deletions main.js
Expand Up @@ -150,6 +150,15 @@ const InstallLocalDependecies = async () => {
}
);
}
exec(
`npm install --save-dev eslint-plugin-prettier eslint-config-prettier`,
(error, stdout, stderr) => {
if (error) {
console.error(error);
}
console.log(stdout);
}
);
} catch (e) {
console.error(`Models cannot to be generate, we have problems here.`);
console.error(e);
Expand Down

0 comments on commit 41f5e49

Please sign in to comment.