6 Commits

Author SHA1 Message Date
fe2581b533 2.0.7 2019-06-19 13:49:57 +02:00
db906cea1a fix(core): update 2019-06-19 13:49:57 +02:00
9c1dca9ace 2.0.6 2019-06-19 13:20:07 +02:00
c620549476 fix(core): update 2019-06-19 13:20:07 +02:00
90697584d7 2.0.5 2019-06-19 13:12:11 +02:00
1252fa8f97 fix(core): update 2019-06-19 13:12:10 +02:00
4 changed files with 3 additions and 16 deletions

View File

@ -1,5 +1,5 @@
# gitzone ci_default # gitzone ci_default
image: hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
cache: cache:
paths: paths:
@ -49,18 +49,6 @@ testLTS:
tags: tags:
- docker - docker
- notpriv - notpriv
testSTABLE:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
release: release:
stage: release stage: release

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tools", "name": "@gitzone/tools",
"version": "2.0.4", "version": "2.0.7",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tools", "name": "@gitzone/tools",
"version": "2.0.4", "version": "2.0.7",
"private": false, "private": false,
"description": "setup your environment with the most important tools and update them easily.", "description": "setup your environment with the most important tools and update them easily.",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -2,7 +2,6 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as tools from '../ts/tools.install'; import * as tools from '../ts/tools.install';
tap.test("should install default list globally when parsed 'default' as argument", async () => { tap.test("should install default list globally when parsed 'default' as argument", async () => {
await tools.install('default'); await tools.install('default');
}); });