@flun/windows 2.0.3 → 2.0.4
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.
- package/CHANGELOG.md +3 -3
- package/copy-files.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
# 变更日志
|
|
2
|
-
## [2.0.
|
|
3
|
-
###
|
|
4
|
-
-
|
|
2
|
+
## [2.0.4] - 2026-04-30 15:30
|
|
3
|
+
### 修复:
|
|
4
|
+
- 修复了拷贝示例文件路径错误的问题;
|
package/copy-files.js
CHANGED
|
@@ -4,7 +4,7 @@ import { fileURLToPath } from 'url';
|
|
|
4
4
|
|
|
5
5
|
// 要复制的文件位置和文件目标位置
|
|
6
6
|
const __filename = fileURLToPath(import.meta.url), __dirname = path.dirname(__filename),
|
|
7
|
-
fileName = 'sevWin.js', targetDir = path.resolve(__dirname, '
|
|
7
|
+
fileName = 'sevWin.js', targetDir = path.resolve(__dirname, '../../..'),
|
|
8
8
|
|
|
9
9
|
// 要拷贝的文件和目标文件路径
|
|
10
10
|
sourceFile = path.join(__dirname, fileName), targetFile = path.join(targetDir, fileName);
|