diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 400c6d2..01e1d5a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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: - paths: - - node_modules/ +before_script: + - npm install -g vsce -build: +stages: + - prepare + - build +# - package + +prepare: + stage: prepare script: - npm install - - vsce package + cache: + paths: + - node_modules/ + +transpile: + stage: build + script: + - 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f03a4d..245282c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index f7fadbd..78b9037 100644 --- a/README.md +++ b/README.md @@ -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!** diff --git a/package.json b/package.json index 39cdf94..c431819 100644 --- a/package.json +++ b/package.json @@ -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"