Updated vulnerable deps and changed repo to gitlab

This commit is contained in:
Juha Ristolainen 2018-11-28 15:02:14 +01:00
parent 3b1bc6876e
commit 5b698eb916
No known key found for this signature in database
GPG Key ID: D80C6C6D40707E83
4 changed files with 46 additions and 11 deletions

View File

@ -1,12 +1,37 @@
image: node:latest
image: node:10-alpine
# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
before_script:
- npm install -g vsce
stages:
- prepare
- build
# - package
prepare:
stage: prepare
script:
- npm install
cache:
paths:
- node_modules/
build:
transpile:
stage: build
script:
- npm install
- vsce package
- tsc -p ./
cache:
paths:
- node_modules/
policy: pull
#package:
# stage: package
# cache:
# paths:
# - node_modules/
# policy: pull
# script:
# - vsce package
# artifacts:
# paths:
# - code-stats-vscode-*.vsix

View File

@ -2,6 +2,12 @@
All notable changes to the "code-stats-vscode" extension will be documented in this file.
## [1.0.13] - 2018-11-28
### Changed
Updated some outdated vulnerable dependency packages.
## [1.0.12] - 2018-07-05
### Changed

View File

@ -24,6 +24,10 @@ This extension contributes the following settings:
## Release Notes
### 1.0.13
Updated some outdated vulnerable dependency packages. Moved the repo to Gitlab.
### 1.0.12
Updated some outdated dependency packages.
@ -83,6 +87,6 @@ Initial release of code-stats-vscode
### For more information
- [Github repository](https://github.com/riussi/code-stats-vscode)
- [Gitlab repository](https://gitlab.com/juha.ristolainen/code-stats-vscode)
**Enjoy!**

View File

@ -12,8 +12,8 @@
],
"icon": "logo.png",
"repository": {
"type": "github",
"url": "https://github.com/riussi/code-stats-vscode"
"type": "gitlab",
"url": "https://gitlab.com/juha.ristolainen/code-stats-vscode"
},
"engines": {
"vscode": "^1.29.1"