From 42c624a180a314d92dd11c95887accf50c55ed9d Mon Sep 17 00:00:00 2001 From: Peter Bowman Date: Wed, 22 Aug 2018 03:20:14 +1200 Subject: [PATCH] Update folderNames.js (#243) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 😄 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- src/icons/partials/folderNames.js | 2 ++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb1e7e4..59a8584 100644 --- a/CHANGELOG.md +++ b/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. + +# [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)) + + + + +# [2.1.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.0.1...v2.1.0) (2018-05-24) + + + # [2.2.0](https://github.com/equinusocio/vsc-material-theme/compare/v2.0.1...v2.2.0) (2018-06-28) diff --git a/package.json b/package.json index edef39e..b81aecb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vsc-material-theme", "displayName": "Material Theme", "description": "The most epic theme now for Visual Studio Code", - "version": "2.2.0", + "version": "2.3.0", "publisher": "Equinusocio", "license": "Apache-2.0", "author": "Mattia Astorino [@equinusocio]", diff --git a/src/icons/partials/folderNames.js b/src/icons/partials/folderNames.js index 5c9d7d0..9b128b4 100644 --- a/src/icons/partials/folderNames.js +++ b/src/icons/partials/folderNames.js @@ -1,6 +1,7 @@ "folderNames": { "ci": "_folder_ci", "test": "_folder_test", + "tests": "_folder_test", "node_modules": "_folder_node", "assets": "_folder_assets", "bower_components": "_folder_bower", @@ -23,6 +24,7 @@ "folderNamesExpanded": { "ci": "_folder_ci_open", "test": "_folder_test_open", + "tests": "_folder_test_open", "node_modules": "_folder_node_open", "bower_components": "_folder_bower_open", "assets": "_folder_assets_open",