Skip to content

Commit 42f16f3

Browse files
committed
Update Readme with tree files
1 parent fbed23f commit 42f16f3

File tree

1 file changed

+90
-42
lines changed

1 file changed

+90
-42
lines changed

README.md

Lines changed: 90 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -72,51 +72,93 @@ To run the tasks we have these three commands:
7272
## ⛩️ Project structure
7373
On this branch the structure is:`
7474
```
75+
├── .babelrc
7576
├── .gitignore
7677
├── .gulpenvrc
77-
├── .scripts-lint.yml
7878
├── .stylelintrc
7979
├── LICENSE
8080
├── README.md
8181
├── app
8282
| ├── assets
8383
| | ├── 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
9591
| | └── 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
119159
├── gulpfile.js
160+
├── mocha.opts
161+
├── nuxt.config.js
120162
├── package-lock.json
121163
├── package.json
122164
├── tasks
@@ -125,22 +167,28 @@ On this branch the structure is:`
125167
| ├── config
126168
| | ├── helpers.js
127169
| | └── options.js
128-
| ├── copy.js
129170
| ├── plugins
130171
| | ├── commons.js
131172
| | ├── globals.js
132173
| | └── uglify.js
133174
| ├── rules
134-
| | ├── scripts-lint.js
135-
| | └── scripts.js
136-
| ├── serve.js
175+
| | └── scripts-lint.js
137176
| ├── styles-lint.js
138177
| ├── styles.js
139178
| └── watch.js
140179
├── 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
144192
```
145193

146194
**[⬆️ back to top](#quickstart)**

0 commit comments

Comments
 (0)