Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add file structure #1512

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 0 additions & 137 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion deploy-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ cd _book
git init
git add -A
git commit -m 'update book'
git push -f git@github.com:vuejs-templates/webpack.git master:gh-pages
git push -f git@github.com:vuejs-templates/webpack.git master:gh-pages
2 changes: 1 addition & 1 deletion meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = {
type: 'string',
required: false,
message: 'Project description',
default: 'A Vue.js project',
default: 'Projeto padrão Huddle',
},
author: {
when: 'isNotTest',
Expand Down
27 changes: 0 additions & 27 deletions scenarios/README.md

This file was deleted.

14 changes: 0 additions & 14 deletions scenarios/full-karma-airbnb.json

This file was deleted.

14 changes: 0 additions & 14 deletions scenarios/full.json

This file was deleted.

19 changes: 0 additions & 19 deletions scenarios/index.js

This file was deleted.

14 changes: 0 additions & 14 deletions scenarios/minimal.json

This file was deleted.

8 changes: 6 additions & 2 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
},
"dependencies": {
"vue": "^2.5.2"{{#router}},
"vue-router": "^3.0.1"{{/router}}
"vue-router": "^3.0.1"{{/router}},
"vuex": "^2.1.1",
"axios": "^0.19.0",
},
"devDependencies": {
{{#lint}}
Expand Down Expand Up @@ -116,7 +118,9 @@
"portfinder": "^1.0.13",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
"webpack-merge": "^4.1.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
},
"engines": {
"node": ">= 6.0.0",
Expand Down
13 changes: 13 additions & 0 deletions template/src/containers/Container.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>
<div>

</div>
</template>
<script>
export default {

}
</script>
<style lang="scss">

</style>
2 changes: 2 additions & 0 deletions template/src/event-bus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Vue from 'vue';
export const Bus = new Vue();
Empty file added template/src/helpers/helper.js
Empty file.
15 changes: 0 additions & 15 deletions template/src/router/index.js

This file was deleted.

Empty file added template/src/store/index.js
Empty file.
13 changes: 13 additions & 0 deletions template/src/views/View.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>
<div>

</div>
</template>
<script>
export default {

}
</script>
<style lang="scss">

</style>
Loading