Skip to content

Commit cacaece

Browse files
committed
v1.4.2-patch.1 - add npm-webpack-demo [email protected], [email protected]
1 parent 8982e6b commit cacaece

File tree

12 files changed

+5798
-0
lines changed

12 files changed

+5798
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.2-patch1] - 2025-11-03
9+
10+
### Fixed
11+
- 缺陷修复:更新父级任务后,再次更新子级任务是发生无限循环调用的问题修复
12+
- Defect fix: Fixed the issue of infinite loop calls when updating child tasks after updating the parent task
13+
814
## [1.4.2] - 2025-11-01
915

1016
### Added

npm-webpack-demo/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
.DS_Store
4+
*.log

npm-webpack-demo/README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Vue 3 + Webpack 5 项目
2+
3+
## 环境要求
4+
5+
6+
7+
## 安装依赖
8+
```bash
9+
npm install
10+
```
11+
12+
## 开发模式
13+
```bash
14+
npm run dev
15+
```
16+
17+
## 生产构建
18+
```bash
19+
npm run build
20+
```
21+
22+
## 项目结构
23+
```
24+
npm-webpack-test/
25+
├── public/
26+
│ └── index.html # HTML 模板
27+
├── src/
28+
│ ├── App.vue # 根组件
29+
│ └── main.js # 入口文件
30+
├── package.json # 项目配置
31+
├── webpack.config.js # Webpack 配置
32+
└── README.md # 说明文档
33+
```

0 commit comments

Comments
 (0)