@aigne/doc-smith 0.3.0 → 0.3.1
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 +7 -0
- package/package.json +1 -1
- package/utils/constants.mjs +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.3.0...v0.3.1) (2025-08-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* polish load sources pattern ([#48](https://github.com/AIGNE-io/aigne-doc-smith/issues/48)) ([5f83b91](https://github.com/AIGNE-io/aigne-doc-smith/commit/5f83b917ea6779ba79418e3ff2490eb692c3e48a))
|
|
9
|
+
|
|
3
10
|
## [0.3.0](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.2.11...v0.3.0) (2025-08-19)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/utils/constants.mjs
CHANGED
|
@@ -9,6 +9,8 @@ export const DEFAULT_INCLUDE_PATTERNS = [
|
|
|
9
9
|
"*.jsx",
|
|
10
10
|
"*.ts",
|
|
11
11
|
"*.tsx",
|
|
12
|
+
"*.mjs",
|
|
13
|
+
"*.mts",
|
|
12
14
|
// C/C++
|
|
13
15
|
"*.c",
|
|
14
16
|
"*.cc",
|
|
@@ -122,6 +124,13 @@ export const DEFAULT_EXCLUDE_PATTERNS = [
|
|
|
122
124
|
"**/*node_modules/**",
|
|
123
125
|
"*.log",
|
|
124
126
|
"**/*test.*",
|
|
127
|
+
"**/pnpm-lock.yaml",
|
|
128
|
+
"**/yarn.lock",
|
|
129
|
+
"**/package-lock.json",
|
|
130
|
+
"**/pnpm-lock.json",
|
|
131
|
+
"**/bun.lockb",
|
|
132
|
+
"**/bun.lock",
|
|
133
|
+
"**/bun.lockb",
|
|
125
134
|
];
|
|
126
135
|
|
|
127
136
|
// Supported languages for documentation
|