Skip to content

Commit 9cc98e8

Browse files
authored
Merge pull request #10 from oslabs-beta/michael/makepretty
Michael/makepretty
2 parents 02a25a2 + 4936e26 commit 9cc98e8

27 files changed

+1418
-485
lines changed

.eslintrc.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ module.exports = {
88
'vue/no-deprecated-slot-attribute': 'off',
99
},
1010

11+
"parser": "vue-eslint-parser",
1112
parserOptions: {
12-
parser: '@babel/eslint-parser',
1313
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
14+
parser: { //attempt to speed up runtime using TS when coding
15+
"ts":'@typescript-eslint/parser',
16+
"<template>": "espree"
17+
},
18+
requireConfigFile: false,
1419
sourceType: 'module', // Allows for the use of imports
15-
requireConfigFile: false
1620
},
1721

1822
env: {
@@ -68,4 +72,4 @@ module.exports = {
6872
// allow debugger during development only
6973
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
7074
}
71-
}
75+
};

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- [Changelog 5.0](#changelog-50)
2121
- [Changelog 6.0](#changelog-60)
2222
- [Changelog 7.0](#changelog-70)
23+
- [Changelog 8.0](#changelog-80)
2324
- [How to use](#how-to-use)
2425
- [Installation](#installation)
2526
- [WSL Installation](#wsl-installation)
@@ -199,19 +200,23 @@
199200

200201
<details><summary>OverVue 8.0</summary>
201202
<ul>
202-
<li>Added component snap to grid functionality </li>
203+
<li>Added component snap to grid functionality with additional grid density drop down menu feature</li>
203204
<li>Code snippet reflects CSS grid area styling of components </li>
204205
<li>Ability to import components from Element Plus library</li>
205206
<li>Exported project template code now more accurately reflects component placement in app</li>
206207
<li>Improved canvas drag and deselect</li>
207208
<li>Improved WSL developer installation instructions</li>
209+
<li>Added TypeScipt to application</li>
210+
<li>Implemented component search bar feature</li>
208211
<br>
209212
<h4><strong>Bug Fixes</strong></h4>
210213
<li>Fixed routing components in project exports </li>
211214
<li>Fixed component hierarchy in project exports </li>
212215
<li>Fixed import statements of route child components</li>
213216
<li>Fixed edge case HTML element bugs in project exports </li>
214217
<li>Fixed in app component movement bugs which caused position to not update correctly </li>
218+
<li>Fixed drag and drop HTML element on click bug</li>
219+
<li>Eliminated code redundancy by implementing mixins</li>
215220
</ul>
216221
</details>
217222
<br/>

0 commit comments

Comments
 (0)