@dazhicheng/common 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.gitlab-ci.yml +5 -2
  2. package/package.json +1 -1
package/.gitlab-ci.yml CHANGED
@@ -9,15 +9,18 @@ variables:
9
9
  # 构建锚点 ----------------------------------------------------------------
10
10
  .build_template: &build_template
11
11
  stage: build
12
- image: node:20-alpine
12
+ image: node:24-alpine
13
+ tags:
14
+ - build
13
15
  script:
14
16
  - npm install -g pnpm
15
- - pnpm install
16
17
  - pnpm up:dzc
18
+ - pnpm install --no-frozen-lockfile
17
19
  - pnpm "build:${NODE_ENV}"
18
20
  artifacts:
19
21
  paths:
20
22
  - dist/
23
+ - nginx_*.conf
21
24
  expire_in: 1 day
22
25
 
23
26
  # 部署锚点(通用脚本直接写在这里,不需要项目覆盖) -------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dazhicheng/common",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "共享配置文件",
5
5
  "type": "module",
6
6
  "types": "./src/types/index.d.ts",