Skip to content

Commit

Permalink
Merge branch 'release/0.15.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Feb 1, 2021
2 parents f4a1304 + fb89ab3 commit dc02a8f
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 18 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@

<!--lint disable no-duplicate-headings no-duplicate-headings-in-section-->

# 0.15.1

![Release Date: 2021-02-01](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-02-01&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.15.1&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/25) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.15.1&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/21)

[Show all commits][gh-compare-tag-v0.15.0_v0.15.1]

This release version mainly migrates a NPM package dependency that has been deprecated and deleted from the registry to the new package.

## Bug Fixes

<details>
<summary><strong>Switch to new ESLint configuration preset package</strong> — #190 (⊶ 13ef97ec) by <a href="https://github.com/kremalicious" target="_blank">@kremalicious</a></summary>

↠ Before the [`eslint-config-arcticicestudio-base` NPM package][npm-eslint-config-arcticicestudio-base] was used which has been deprecated and also deleted from the registry.
Because the goal of the deprecation was to move to the new [`@arcticicestudio/eslint-config-base` package][npm-@arcticicestudio/eslint-config-base] anyway it has now been switched.

</details>

# 0.15.0

![Release Date: 2020-06-23](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2020-06-23&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.15.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/24) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.15.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/20)
Expand Down Expand Up @@ -1085,3 +1103,9 @@ Detailed information about features, supported languages and install instruction
[vsc-rln-1.45]: https://code.visualstudio.com/updates/v1_45
[vsc-rln-1.45#editor_title_border]: https://code.visualstudio.com/updates/v1_45#_new-theme-color-for-editor-title-border
[vscode-docs-theme_color#mm]: https://code.visualstudio.com/api/references/theme-color#minimap

<!-- v0.15.1 -->

[gh-compare-tag-v0.15.0_v0.15.1]: https://github.com/arcticicestudio/nord-visual-studio-code/compare/v0.15.0...v0.15.1
[npm-@arcticicestudio/eslint-config-base]: https://www.npmjs.com/package/@arcticicestudio/eslint-config-base
[npm-eslint-config-arcticicestudio-base]: https://www.npmjs.com/package/eslint-config-arcticicestudio-base
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nord-visual-studio-code",
"displayName": "Nord",
"description": "An arctic, north-bluish clean and elegant Visual Studio Code theme.",
"version": "0.15.0",
"version": "0.15.1",
"publisher": "arcticicestudio",
"author": {
"name": "Arctic Ice Studio",
Expand Down Expand Up @@ -76,10 +76,10 @@
"package": "vsce package --out nord-visual-studio-code.vsix"
},
"devDependencies": {
"@arcticicestudio/eslint-config-base": ">=0.5.0 <1.0.0",
"babel-eslint": "10.0.1",
"del-cli": "1.1.0",
"eslint": "5.16.0",
"eslint-config-arcticicestudio-base": ">=0.5.0 <1.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-prettier": "3.1.0",
Expand Down
25 changes: 25 additions & 0 deletions themes/nord-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,19 @@
"foreground": "#8FBCBB"
}
},
{
"name": "[JavaScript] Parentheses in Template Strings",
"scope": [
"source.js meta.embedded.line meta.brace.square",
"source.js meta.embedded.line meta.brace.round",
/* Required for extension `mgmcdermott.vscode-language-babel`. */
"source.js string.quoted.template meta.brace.square",
"source.js string.quoted.template meta.brace.round",
],
"settings": {
"foreground": "#ECEFF4"
}
},
{
"name": "[HTML] Constant Character Entity",
"scope": "text.html.basic constant.character.entity.html",
Expand Down Expand Up @@ -1209,6 +1222,18 @@
"foreground": "#D8DEE9"
}
},
{
"name": "[TypeScript] Parentheses in Template Strings",
"scope": [
"source.ts meta.embedded.line meta.brace.square",
"source.ts meta.embedded.line meta.brace.round",
"source.tsx meta.embedded.line meta.brace.square",
"source.tsx meta.embedded.line meta.brace.round"
],
"settings": {
"foreground": "#ECEFF4"
}
},
{
"name": "[XML] Entity Name Tag Namespace",
"scope": "text.xml entity.name.tag.namespace",
Expand Down

0 comments on commit dc02a8f

Please sign in to comment.