@qse/edu-scripts 1.14.7 → 1.14.8

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # 更新日志
2
2
 
3
+ ## 1.14.8 (2025-02-12)
4
+
5
+ - fix: 缓存依赖增加 theme.json 文件
6
+
3
7
  ## 1.14.7 (2024-11-22)
4
8
 
5
9
  - feat: 增加文曲智阅部署
@@ -170,7 +170,7 @@ module.exports = function getWebpackConfig(args, override) {
170
170
  version: require("../../package.json").version,
171
171
  buildDependencies: {
172
172
  config: [__filename],
173
- override: [paths.override].filter((f) => fs.existsSync(f)),
173
+ override: [paths.override, paths.theme].filter((f) => fs.existsSync(f)),
174
174
  tsconfig: [paths.tsconfig, paths.jsconfig].filter((f) => fs.existsSync(f))
175
175
  }
176
176
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qse/edu-scripts",
3
- "version": "1.14.7",
3
+ "version": "1.14.8",
4
4
  "author": "Kinoko",
5
5
  "license": "MIT",
6
6
  "description": "教育工程化基础框架",
@@ -193,7 +193,7 @@ module.exports = function getWebpackConfig(args, override) {
193
193
  version: require('../../package.json').version,
194
194
  buildDependencies: {
195
195
  config: [__filename],
196
- override: [paths.override].filter((f) => fs.existsSync(f)),
196
+ override: [paths.override, paths.theme].filter((f) => fs.existsSync(f)),
197
197
  tsconfig: [paths.tsconfig, paths.jsconfig].filter((f) => fs.existsSync(f)),
198
198
  },
199
199
  },