Update folderNames.js (#243)
* chore(release): 2.3.0
* Update folderNames.js
Noticed when I build a vue project with "vue start" it names the folder "tests" automatically; maybe other frameworks do it too?
So added it for tests too 😄
This commit is contained in:
parent
e783b1c67d
commit
42c624a180
3 changed files with 23 additions and 1 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -2,6 +2,26 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
<a name="2.3.0"></a>
|
||||||
|
# [2.3.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.2.0...v2.3.0) (2018-07-01)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Fix find widget border color ([bcd9667](https://github.com/equinusocio/vsc-material-theme/commit/bcd9667)), closes [#218](https://github.com/equinusocio/vsc-material-theme/issues/218)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add icon to source folders ([8cfc0a5](https://github.com/equinusocio/vsc-material-theme/commit/8cfc0a5))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="2.1.0"></a>
|
||||||
|
# [2.1.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.0.1...v2.1.0) (2018-05-24)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="2.2.0"></a>
|
<a name="2.2.0"></a>
|
||||||
# [2.2.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.0.1...v2.2.0) (2018-06-28)
|
# [2.2.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.0.1...v2.2.0) (2018-06-28)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "vsc-material-theme",
|
"name": "vsc-material-theme",
|
||||||
"displayName": "Material Theme",
|
"displayName": "Material Theme",
|
||||||
"description": "The most epic theme now for Visual Studio Code",
|
"description": "The most epic theme now for Visual Studio Code",
|
||||||
"version": "2.2.0",
|
"version": "2.3.0",
|
||||||
"publisher": "Equinusocio",
|
"publisher": "Equinusocio",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"author": "Mattia Astorino [@equinusocio]",
|
"author": "Mattia Astorino [@equinusocio]",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
"folderNames": {
|
"folderNames": {
|
||||||
"ci": "_folder_ci",
|
"ci": "_folder_ci",
|
||||||
"test": "_folder_test",
|
"test": "_folder_test",
|
||||||
|
"tests": "_folder_test",
|
||||||
"node_modules": "_folder_node",
|
"node_modules": "_folder_node",
|
||||||
"assets": "_folder_assets",
|
"assets": "_folder_assets",
|
||||||
"bower_components": "_folder_bower",
|
"bower_components": "_folder_bower",
|
||||||
|
@ -23,6 +24,7 @@
|
||||||
"folderNamesExpanded": {
|
"folderNamesExpanded": {
|
||||||
"ci": "_folder_ci_open",
|
"ci": "_folder_ci_open",
|
||||||
"test": "_folder_test_open",
|
"test": "_folder_test_open",
|
||||||
|
"tests": "_folder_test_open",
|
||||||
"node_modules": "_folder_node_open",
|
"node_modules": "_folder_node_open",
|
||||||
"bower_components": "_folder_bower_open",
|
"bower_components": "_folder_bower_open",
|
||||||
"assets": "_folder_assets_open",
|
"assets": "_folder_assets_open",
|
||||||
|
|
Loading…
Reference in a new issue