@dazhicheng/common 1.0.12 → 1.0.13

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/Dockerfile +2 -0
  2. package/package.json +1 -1
package/Dockerfile CHANGED
@@ -17,6 +17,8 @@ RUN pnpm install
17
17
 
18
18
  # 再复制全部源代码,进行构建
19
19
  COPY . .
20
+ # 同步生成文件
21
+ RUN pnpm sync:common
20
22
  RUN pnpm "build:${NODE_ENV}"
21
23
 
22
24
  # 阶段 2:部署到 Nginx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dazhicheng/common",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "共享配置文件",
5
5
  "type": "module",
6
6
  "types": "./src/types/index.d.ts",