@@ -72,51 +72,93 @@ To run the tasks we have these three commands:
72
72
## ⛩️ Project structure
73
73
On this branch the structure is:`
74
74
```
75
+ ├── .babelrc
75
76
├── .gitignore
76
77
├── .gulpenvrc
77
- ├── .scripts-lint.yml
78
78
├── .stylelintrc
79
79
├── LICENSE
80
80
├── README.md
81
81
├── app
82
82
| ├── assets
83
83
| | ├── fonts
84
- | | | └── OpenSans
85
- | | | ├── OpenSans-Bold.ttf
86
- | | | ├── OpenSans-BoldItalic.ttf
87
- | | | ├── OpenSans-ExtraBold.ttf
88
- | | | ├── OpenSans-ExtraBoldItalic.ttf
89
- | | | ├── OpenSans-Italic.ttf
90
- | | | ├── OpenSans-Light.ttf
91
- | | | ├── OpenSans-LightItalic.ttf
92
- | | | ├── OpenSans-Regular.ttf
93
- | | | ├── OpenSans-Semibold.ttf
94
- | | | └── OpenSans-SemiboldItalic.ttf
84
+ | | | ├── Icomoon
85
+ | | | | ├── icomoon.ttf
86
+ | | | | └── selection.json
87
+ | | | └── Roboto
88
+ | | | ├── Roboto-Bold.ttf
89
+ | | | ├── Roboto-Light.ttf
90
+ | | | └── Roboto-Regular.ttf
95
91
| | └── images
96
- | | └── example.jpg
97
- | ├── index.html
98
- | ├── scripts
99
- | | ├── app.js
100
- | | └── vendor.js
101
- | └── styles
102
- | ├── app.scss
103
- | ├── base
104
- | | ├── _fonts.scss
105
- | | ├── _globals.scss
106
- | | ├── _icons.scss
107
- | | ├── _states.scss
108
- | | ├── _utilities.scss
109
- | | ├── _variables.scss
110
- | | └── mixins
111
- | | ├── _fonts.scss
112
- | | ├── _icomoon.scss
113
- | | ├── _medias.scss
114
- | | └── _offsets.scss
115
- | ├── components
116
- | | └── _ck-site.scss
117
- | └── vendor
118
- | └── _normalize.scss
92
+ | | └── logo.png
93
+ | ├── components
94
+ | | ├── shared
95
+ | | | ├── choicer.component.vue
96
+ | | | ├── confirm
97
+ | | | | ├── confirm.component.html.vue
98
+ | | | | ├── confirm.component.scss
99
+ | | | | └── confirm.component.ts
100
+ | | | ├── index.ts
101
+ | | | └── loading.component.vue
102
+ | | └── wizard
103
+ | | ├── avatar.component.vue
104
+ | | └── index.ts
105
+ | ├── core
106
+ | | ├── decorators
107
+ | | | ├── container.decorator.ts
108
+ | | | └── index.ts
109
+ | | ├── index.ts
110
+ | | └── store-module.ts
111
+ | ├── helpers
112
+ | | ├── index.ts
113
+ | | └── randomizer.ts
114
+ | ├── layouts
115
+ | | └── default.vue
116
+ | ├── locales
117
+ | | ├── en.json
118
+ | | └── es.json
119
+ | ├── middleware
120
+ | | └── settings.ts
121
+ | ├── pages
122
+ | | ├── index.vue
123
+ | | └── wizard
124
+ | | ├── wizard.page.html.vue
125
+ | | ├── wizard.page.scss
126
+ | | └── wizard.page.ts
127
+ | ├── plugins
128
+ | | ├── axios.ts
129
+ | | ├── components.ts
130
+ | | ├── filters.ts
131
+ | | └── inversify.ts
132
+ | ├── static
133
+ | | └── favicon.ico
134
+ | ├── store
135
+ | | ├── index.ts
136
+ | | └── store.container.ts
137
+ | ├── styles
138
+ | | ├── app.scss
139
+ | | ├── base
140
+ | | | ├── _fonts.scss
141
+ | | | ├── _globals.scss
142
+ | | | ├── _icons.scss
143
+ | | | ├── _states.scss
144
+ | | | ├── _transitions.scss
145
+ | | | ├── _utilities.scss
146
+ | | | ├── _variables.scss
147
+ | | | └── mixins
148
+ | | | ├── _fonts.scss
149
+ | | | ├── _icomoon.scss
150
+ | | | └── _medias.scss
151
+ | | ├── components
152
+ | | | └── _button.scss
153
+ | | └── vendor
154
+ | | └── _normalize.scss
155
+ | └── typings
156
+ | ├── store-plugins.ts
157
+ | ├── vue-shim.d.ts
158
+ | └── vue.d.ts
119
159
├── gulpfile.js
160
+ ├── mocha.opts
161
+ ├── nuxt.config.js
120
162
├── package-lock.json
121
163
├── package.json
122
164
├── tasks
@@ -125,22 +167,28 @@ On this branch the structure is:`
125
167
| ├── config
126
168
| | ├── helpers.js
127
169
| | └── options.js
128
- | ├── copy.js
129
170
| ├── plugins
130
171
| | ├── commons.js
131
172
| | ├── globals.js
132
173
| | └── uglify.js
133
174
| ├── rules
134
- | | ├── scripts-lint.js
135
- | | └── scripts.js
136
- | ├── serve.js
175
+ | | └── scripts-lint.js
137
176
| ├── styles-lint.js
138
177
| ├── styles.js
139
178
| └── watch.js
140
179
├── tasks.config.json
141
- ├── tslint.json
142
- ├── utils
143
- └── webpack.config.js
180
+ ├── test
181
+ | ├── libs
182
+ | | ├── axios.ts
183
+ | | └── chai.ts
184
+ | ├── setup.js
185
+ | └── utils
186
+ | ├── action-context.mock.ts
187
+ | ├── index.ts
188
+ | └── nuxt-axios.mock.ts
189
+ ├── tsconfig.json
190
+ ├── tsconfig.mocha.js
191
+ └── tslint.json
144
192
```
145
193
146
194
** [ ⬆️ back to top] ( #quickstart ) **
0 commit comments