Compare commits

..

4 Commits

Author SHA1 Message Date
09c7dae079 2.3.23 2016-11-17 23:02:45 +01:00
19c118e166 fix gitlab-ci 2016-11-17 23:02:37 +01:00
c0a5057a0d 2.3.22 2016-11-15 22:47:23 +01:00
cfdce55c9b fixed node versions 2016-11-15 22:47:21 +01:00
4 changed files with 4 additions and 4 deletions

View File

@@ -57,10 +57,10 @@ trigger:
- docker
pages:
image: hosttoday/ht-docker-node:npmpage
stage: page
script:
- npmci test stable
- npmci command npm install -g -q npmpage
- npmci command npmpage --host gitlab
only:
- tags

View File

@@ -14,7 +14,7 @@ exports.install = (versionArg) => {
version = '6';
}
else if (versionArg === 'legacy') {
version = '4';
version = '6';
}
else {
version = versionArg;

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "2.3.21",
"version": "2.3.23",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@@ -12,7 +12,7 @@ export let install = (versionArg) => {
} else if (versionArg === 'lts') {
version = '6'
} else if (versionArg === 'legacy') {
version = '4'
version = '6'
} else {
version = versionArg
};