mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-04-22 10:52:13 +00:00
Fixed the missing lodash dependency
This commit is contained in:
parent
9e1970b75b
commit
a009f1718d
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -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"
|
||||||
}
|
}
|
@ -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
|
||||||
|
@ -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
7
package-lock.json
generated
@ -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"
|
||||||
}
|
}
|
||||||
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user