11 Commits

Author SHA1 Message Date
fa2a5607c4 1.0.21 2019-06-04 13:55:57 +02:00
36f79cac12 fix(core): update 2019-06-04 13:55:56 +02:00
c446c50d75 1.0.20 2019-06-04 11:46:17 +02:00
0ccff2a370 fix(core): update 2019-06-04 11:46:16 +02:00
1b54d2ca30 1.0.19 2019-06-04 11:41:48 +02:00
691e78ecbc fix(core): update 2019-06-04 11:41:47 +02:00
e42cdcf339 1.0.18 2019-06-04 11:33:38 +02:00
49c56c3d53 fix(core): update 2019-06-04 11:33:38 +02:00
18454e53dc 1.0.17 2019-06-04 11:27:28 +02:00
4d219d37d7 1.0.16 2019-06-04 11:25:51 +02:00
42e6898dc5 fix(core): update 2019-06-04 11:25:51 +02:00
5 changed files with 490 additions and 365 deletions

View File

@ -1,4 +1,4 @@
# gitzone standard # gitzone ci_default
image: hosttoday/ht-docker-node:npmci image: hosttoday/ht-docker-node:npmci
cache: cache:
@ -78,19 +78,11 @@ release:
# ==================== # ====================
codequality: codequality:
stage: metadata stage: metadata
image: docker:stable
allow_failure: true allow_failure: true
services:
- docker:stable-dind
script: script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/') - npmci command npm install -g tslint typescript
- docker run - npmci npm install
--env SOURCE_CODE="$PWD" - npmci command tslint -c tslint.json ./ts/**/*.ts
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
artifacts:
paths: [codeclimate.json]
tags: tags:
- docker - docker
- priv - priv

View File

@ -1,10 +1,6 @@
{ {
"npmci": { "npmci": {
"npmGlobalTools": [ "npmGlobalTools": [],
"npmts",
"ts-node",
"typescript"
],
"npmAccessLevel": "public" "npmAccessLevel": "public"
}, },
"npmts": { "npmts": {

804
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartopen", "name": "@pushrocks/smartopen",
"version": "1.0.15", "version": "1.0.21",
"description": "open things", "description": "open things",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
@ -22,14 +22,25 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartopen#README", "homepage": "https://gitlab.com/pushrocks/smartopen#README",
"dependencies": { "dependencies": {
"@types/opn": "^5.1.0", "opn": "^6.0.0"
"opn": "^5.3.0"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.8", "@gitzone/tsbuild": "^2.1.11",
"@gitzone/tstest": "^1.0.20", "@gitzone/tstest": "^1.0.24",
"@types/node": "^10.1.2", "@pushrocks/tapbundle": "^3.0.9",
"tapbundle": "^2.0.0" "@types/node": "^12.0.4",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0"
}, },
"private": true "private": false,
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
} }

View File

@ -1,4 +1,4 @@
import open = require('opn'); import open from 'opn';
import { ChildProcess } from 'child_process'; import { ChildProcess } from 'child_process';
export let openUrl = async urlArg => { export let openUrl = async urlArg => {