Compare commits

...

15 Commits

Author SHA1 Message Date
c295ad18be 5.0.95 2022-10-19 00:31:44 +02:00
afad2c3654 fix(core): update 2022-10-19 00:31:43 +02:00
409b0c60a1 5.0.94 2022-10-18 23:35:13 +02:00
feb57f1d36 fix(core): update 2022-10-18 23:35:13 +02:00
80f0a0d9dc 5.0.93 2022-10-18 23:23:39 +02:00
c2ba244375 fix(core): update 2022-10-18 23:23:38 +02:00
f859d910b6 5.0.92 2022-10-17 13:08:07 +02:00
bc71510cd1 fix(core): update 2022-10-17 13:08:06 +02:00
181b3643b1 5.0.91 2022-10-15 10:32:31 +02:00
85bee13ba9 fix(core): update 2022-10-15 10:32:31 +02:00
74c60c8d4f 5.0.90 2022-10-12 17:25:22 +02:00
0c5f20ed36 5.0.89 2022-10-12 17:24:48 +02:00
4066098153 fix(core): update 2022-10-12 17:24:48 +02:00
a9fcf3c64e 5.0.88 2022-10-12 16:33:03 +02:00
03cdeb1cd4 fix(core): update 2022-10-12 16:33:02 +02:00
7 changed files with 11 additions and 24 deletions

View File

@ -36,6 +36,7 @@ release:
- npmci docker build
- npmci docker test
- npmci docker push registry.gitlab.com
- npmci docker push docker.io
only:
- tags
tags:

5
Dockerfile_alpinenpmci Normal file
View File

@ -0,0 +1,5 @@
FROM hosttoday/ht-docker-node:alpine
RUN apk add --update alpine-sdk && \
apk add libffi-dev openssl-dev && \
apk add python-dev python3-dev && \
pnpm install -g @shipzone/npmci node-gyp

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "ht-docker-node",
"version": "5.0.87",
"version": "5.0.95",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "ht-docker-node",
"version": "5.0.87",
"version": "5.0.95",
"description": "docker image with nodejs and shipzone.io support",
"main": "index.js",
"scripts": {

View File

@ -1,11 +1,10 @@
# check if npmci is available
npm init -y
npmci -v
npm set registry https://verdaccio.lossless.one
# TODO update npmci to not require package.json
npmci node install stable
# check if npm picks it up
npmci command npm install -g @gitzone/tsrun
npmci command pnpm install -g @gitzone/tsrun
npmci command tsrun -v

View File

@ -1,6 +1,5 @@
# npm
npm -v
node -v
npm set registry https://verdaccio.lossless.one
npm install -g @gitzone/tsrun
# tsrun -v
pnpm install -g @gitzone/tsrun
tsrun -v

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}