Fixed the missing lodash dependency

This commit is contained in:
Juha Ristolainen 2018-07-04 15:13:22 +02:00
parent 9e1970b75b
commit a009f1718d
No known key found for this signature in database
GPG Key ID: D80C6C6D40707E83
5 changed files with 17 additions and 9 deletions

View File

@ -5,5 +5,6 @@
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
}
},
"typescript.tsdk": "node_modules/typescript/lib"
}

View File

@ -2,6 +2,12 @@
All notable changes to the "code-stats-vscode" extension will be documented in this file.
## [1.0.11] - 2018-07-04
### Changed
Fixed the missing lodash.template dependency for the merged HTML profile view.
## [1.0.10] - 2018-07-04
### Changed

View File

@ -24,6 +24,10 @@ This extension contributes the following settings:
## Release Notes
### 1.0.11
Fixed the missing lodash.template dependency for the merged HTML profile view.
### 1.0.10
Updated security vulnerable dependecy per CVE-2017-16042. Growl to 1.10.5

7
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "code-stats-vscode",
"version": "1.0.9",
"version": "1.0.11",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -1161,8 +1161,7 @@
"lodash._reinterpolate": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
"dev": true
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
},
"lodash.isequal": {
"version": "4.5.0",
@ -1174,7 +1173,6 @@
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz",
"integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=",
"dev": true,
"requires": {
"lodash._reinterpolate": "3.0.0",
"lodash.templatesettings": "4.1.0"
@ -1184,7 +1182,6 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz",
"integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=",
"dev": true,
"requires": {
"lodash._reinterpolate": "3.0.0"
}

View File

@ -2,7 +2,7 @@
"name": "code-stats-vscode",
"displayName": "Code::Stats",
"description": "Code::Stats package for Visual Studio Code",
"version": "1.0.10",
"version": "1.0.11",
"license": "MIT",
"publisher": "riussi",
"contributors": [
@ -63,11 +63,11 @@
"vscode": "^1.1.0",
"mocha": "^2.3.3",
"growl": "^1.10.5",
"lodash.template": "^4.4.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"axios": "0.18.0"
"axios": "0.18.0",
"lodash.template": "^4.4.0"
}
}