Compare commits

..

No commits in common. "master" and "v2.0.0" have entirely different histories.

6 changed files with 43 additions and 17 deletions

View File

@ -12,12 +12,20 @@ stages:
- release
- metadata
before_script:
- npm install -g @shipzone/npmci
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
only:
- tags
tags:
- lossless
- docker
- notpriv
auditProductionDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
@ -28,7 +36,6 @@ auditProductionDependencies:
- npmci command npm audit --audit-level=high --only=prod --production
tags:
- docker
allow_failure: true
auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
@ -89,9 +96,10 @@ codequality:
only:
- tags
script:
- npmci command npm install -g typescript
- npmci command npm install -g tslint typescript
- npmci npm prepare
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags:
- lossless
- docker
@ -111,10 +119,11 @@ trigger:
pages:
stage: metadata
script:
- npmci node install stable
- npmci node install lts
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command npm run buildDocs
- npmci command tsdoc
tags:
- lossless
- docker

24
.vscode/launch.json vendored
View File

@ -2,10 +2,28 @@
"version": "0.2.0",
"configurations": [
{
"command": "npm test",
"name": "Run npm test",
"name": "current file",
"type": "node",
"request": "launch",
"type": "node-terminal"
"args": [
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
}
]
}

View File

@ -5,7 +5,7 @@
"githost": "gitlab.com",
"gitscope": "mojoio",
"gitrepo": "sentry",
"description": "an unofficial abstraction package for sentry.io",
"shortDescription": "an unofficial abstraction package for sentry.io",
"npmPackagename": "@mojoio/sentry",
"license": "MIT"
}

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@mojoio/sentry",
"version": "2.0.1",
"version": "2.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@mojoio/sentry",
"version": "2.0.1",
"version": "2.0.0",
"license": "MIT",
"dependencies": {
"@pushrocks/qenv": "^5.0.2",

View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/sentry",
"version": "2.0.1",
"version": "2.0.0",
"private": false,
"description": "an unofficial abstraction package for sentry.io",
"main": "dist_ts/index.js",
@ -10,8 +10,7 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
"build": "(tsbuild --web)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@mojoio/sentry',
version: '2.0.1',
version: '2.0.0',
description: 'an unofficial abstraction package for sentry.io'
}