From bf3f5e44c511a5dd266b2cb6485ce40747aa8f34 Mon Sep 17 00:00:00 2001 From: Karyakin Dmitry <karyakin@perx.ru> Date: Fri, 4 Aug 2023 07:26:51 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=B8=D0=BC=D0=BE?= =?UTF-8?q?=D1=81=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 6 +++--- Makefile | 14 +++++++------- config/package.json | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a021ef7..be2dd64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,9 +10,9 @@ publish_npm: - apk --no-cache add git - git submodule update --remote --merge - apk add --update make bash protobuf-dev yarn - - npm install -g ts-proto@1.115.5 - - npm install -g typescript@4.7.4 - - npm i protobufjs@6.11.3 + - npm install -g ts-proto@1.151.1 + - npm install -g typescript@5.1.6 + - npm i protobufjs@7.2.4 rules: - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' diff --git a/Makefile b/Makefile index 78d2cee..7797c74 100644 --- a/Makefile +++ b/Makefile @@ -55,20 +55,20 @@ ifeq (,$(shell which npm)) endif ifeq (,$(shell which protoc-gen-ts_proto)) $(error "Ts-proto plugin for protoc not found. \ - Run \"npm install -g ts-proto@1.115.5\" \ + Run \"npm install -g ts-proto@1.151.1\" \ or visit \"https://github.com/stephenh/ts-proto\" for more.\n") endif ifeq (,$(shell which tsc)) $(error "Typescript not found. \ - Run \"npm install -g typescript@4.7.4\" \ + Run \"npm install -g typescript@5.1.6\" \ or visit \"https://github.com/microsoft/TypeScript\" for more.\n") endif -ifneq ($(shell expr $(TSC_MAJOR_VERSION) \>= 4), 1) +ifneq ($(shell expr $(TSC_MAJOR_VERSION) \>= 5), 1) $(error "Current version is outdated. Please update typescript \n") endif -ifneq ($(shell expr $(TSC_MINOR_VERSION) \>= 7), 1) - $(error "Current version is lower than 4.7 Please update typescript \n") +ifneq ($(shell expr $(TSC_MINOR_VERSION) \>= 1), 1) + $(error "Current version is lower than 5.1 Please update typescript \n") endif -ifneq ($(shell expr $(TSC_MIC_VERSION) \>= 4), 1) - $(error "Current version is lower than 4.7.4 Please update typescript \n") +ifneq ($(shell expr $(TSC_MIC_VERSION) \>= 6), 1) + $(error "Current version is lower than 5.1.6 Please update typescript \n") endif diff --git a/config/package.json b/config/package.json index 104ed03..d2ff211 100644 --- a/config/package.json +++ b/config/package.json @@ -1,6 +1,6 @@ { "name": "@perxis-js/perxis-client", - "version": "1.1.4", + "version": "1.1.5", "description": "", "main": "dist/index.js", "files": [ @@ -14,7 +14,7 @@ "pub": "npm publish" }, "dependencies": { - "protobufjs": "^6.11.3" + "protobufjs": "7.2.4" }, "author": "", "license": "ISC" -- GitLab