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": { "search.exclude": {
"out": true // set this to false to include "out" folder in search results "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. 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 ## [1.0.10] - 2018-07-04
### Changed ### Changed

View File

@ -24,6 +24,10 @@ This extension contributes the following settings:
## Release Notes ## Release Notes
### 1.0.11
Fixed the missing lodash.template dependency for the merged HTML profile view.
### 1.0.10 ### 1.0.10
Updated security vulnerable dependecy per CVE-2017-16042. Growl to 1.10.5 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", "name": "code-stats-vscode",
"version": "1.0.9", "version": "1.0.11",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@ -1161,8 +1161,7 @@
"lodash._reinterpolate": { "lodash._reinterpolate": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
"dev": true
}, },
"lodash.isequal": { "lodash.isequal": {
"version": "4.5.0", "version": "4.5.0",
@ -1174,7 +1173,6 @@
"version": "4.4.0", "version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz",
"integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=",
"dev": true,
"requires": { "requires": {
"lodash._reinterpolate": "3.0.0", "lodash._reinterpolate": "3.0.0",
"lodash.templatesettings": "4.1.0" "lodash.templatesettings": "4.1.0"
@ -1184,7 +1182,6 @@
"version": "4.1.0", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz",
"integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=",
"dev": true,
"requires": { "requires": {
"lodash._reinterpolate": "3.0.0" "lodash._reinterpolate": "3.0.0"
} }

View File

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