openxiangda 1.0.234 → 1.0.235

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.
@@ -13,6 +13,7 @@ const ROOT_SOURCE_FILES = new Set([
13
13
  'package.json',
14
14
  'package-lock.json',
15
15
  'pnpm-lock.yaml',
16
+ 'pnpm-workspace.yaml',
16
17
  'yarn.lock',
17
18
  'postcss.config.cjs',
18
19
  'postcss.config.js',
@@ -111,10 +112,11 @@ function shouldIncludeSourceFile(relativePath) {
111
112
  const segments = normalized.split('/');
112
113
  if (segments.some(segment => IGNORED_SEGMENTS.has(segment))) return false;
113
114
  if (ROOT_SOURCE_FILES.has(normalized)) return true;
115
+ if (/^tsconfig(?:\.[^/]+)?\.json$/.test(normalized)) return true;
114
116
  return (
115
117
  normalized.startsWith('src/') ||
116
118
  normalized.startsWith('public/') ||
117
- normalized === 'scripts/build-js-code.mjs'
119
+ normalized.startsWith('scripts/')
118
120
  );
119
121
  }
120
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openxiangda",
3
- "version": "1.0.234",
3
+ "version": "1.0.235",
4
4
  "description": "OpenXiangda CLI, workspace build tools, runtime SDK, and form components.",
5
5
  "private": false,
6
6
  "bin": {