perf:更新文件名称

This commit is contained in:
曾文豪
2024-11-06 23:55:58 +08:00
parent a2a5ba43d6
commit 68efdc6a07
3 changed files with 12 additions and 26 deletions

View File

@@ -1,13 +0,0 @@
stages:
- build
build-jar:
stage: build
tags:
- zengos
rules:
- if: $CI_COMMIT_BRANCH == "master"
script:
- echo "//${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}">.npmrc
- npm publish

1
.npmrc
View File

@@ -1 +0,0 @@
@tiesheng:registry=http://git.tieshengkeji.com/api/packages/tieshengkeji/npm/

View File

@@ -1,15 +1,15 @@
const Common = require('./src/utils/Common') const TsCommon = require('./src/utils/TsCommon')
const Storage = require('./src/utils/Storage') const TsStorage = require('./src/utils/TsStorage')
const crypto = require('./src/utils/TsCrypto') const TsCrypto = require('./src/utils/TsCrypto')
const GlobalConfig = require('./src/utils/GlobalConfig') const TsGlobalConfig = require('./src/utils/TsGlobalConfig')
const SM4 = require('./src/utils/TsSM4') const TsSM4 = require('./src/utils/TsSM4')
const HttpUtil = require('./src/https/HttpUtil') const TsHttpUtil = require('./src/https/TsHttpUtil')
module.exports = { module.exports = {
HttpUtil, TsHttpUtil,
Common, TsCommon,
Storage, TsStorage,
SM4, TsSM4,
crypto, TsCrypto,
GlobalConfig, TsGlobalConfig,
} }