4 Commits
v3.0.3 ... main

Author SHA1 Message Date
e42d8fd229 chore: remove .gitlab-ci.yml 2026-03-01 18:58:18 +00:00
62b28f3feb update description 2024-05-29 14:17:20 +02:00
329add7000 3.0.4 2024-04-30 17:50:58 +02:00
be2082e728 fix(core): update 2024-04-30 17:50:57 +02:00
4 changed files with 8 additions and 148 deletions

View File

@@ -1,140 +0,0 @@
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
cache:
paths:
- .npmci_cache/
key: '$CI_BUILD_STAGE'
stages:
- security
- test
- 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
script:
- npmci npm prepare
- npmci command npm install --production --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- 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
stage: security
script:
- npmci npm prepare
- npmci command npm install --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high --only=dev
tags:
- docker
allow_failure: true
# ====================
# test stage
# ====================
testStable:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
testBuild:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci command npm run build
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
release:
stage: release
script:
- npmci node install stable
- npmci npm publish
only:
- tags
tags:
- lossless
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
only:
- tags
script:
- npmci command npm install -g typescript
- npmci npm prepare
- npmci npm install
tags:
- lossless
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- lossless
- docker
- notpriv
pages:
stage: metadata
script:
- npmci node install lts
- npmci command npm install -g @git.zone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command tsdoc
tags:
- lossless
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@push.rocks/smartyaml",
"version": "3.0.3",
"version": "3.0.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@push.rocks/smartyaml",
"version": "3.0.3",
"version": "3.0.4",
"license": "MIT",
"dependencies": {
"@types/js-yaml": "^4.0.5",

View File

@@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartyaml",
"version": "3.0.3",
"version": "3.0.4",
"private": false,
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
"main": "dist_ts/index.js",
@@ -8,11 +8,11 @@
"type": "module",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web --allowimplicitany)"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartyaml.git"
"url": "https://code.foss.global/push.rocks/smartyaml.git"
},
"keywords": [
"YAML",
@@ -30,7 +30,7 @@
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartyaml#README",
"homepage": "https://code.foss.global/push.rocks/smartyaml",
"dependencies": {
"yaml": "^2.4.2"
},
@@ -56,4 +56,4 @@
"npmextra.json",
"readme.md"
]
}
}

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartyaml',
version: '3.0.3',
version: '3.0.4',
description: 'A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.'
}