Skip to content

Commit a867ab4

Browse files
committed
chore: update package versions and configs across workspace (54 modified)
1 parent 0012abf commit a867ab4

55 files changed

Lines changed: 75 additions & 64 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

libraries/config/eslint.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ const config = eslint10({
99
type: 'lib',
1010
typescript: {
1111
strictTypescriptEslint: true,
12-
tsconfigPath: resolve(configDir, 'tsconfig.eslint.json'),
12+
tsconfigPath: resolve(configDir, 'tsconfig.json'),
1313
parserOptions: {
1414
allowDefaultProject: true
1515
}
1616
},
1717
ignores: [
1818
'.turbo/**',
1919
'*.md',
20-
'**/*.md'
20+
'**/*.md',
21+
'**/*.toml',
22+
'**/*.d.ts'
2123
]
2224
})
2325

libraries/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"private": true,
32
"name": "@truenine/config",
43
"type": "module",
54
"version": "2026.10223.10555",
5+
"private": true,
66
"description": "Rust-powered configuration loader for Node.js",
77
"license": "AGPL-3.0-only",
88
"exports": {

libraries/config/src/index.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,10 @@ export function loadUserConfig(cwd: string): Record<string, unknown> {
5454
* Get the global config file path (~/.aindex/.tnmsc.json).
5555
*/
5656
export function getGlobalConfigPath(): string {
57-
if (napiBinding == null) {
58-
const home = process.env['HOME'] ?? process.env['USERPROFILE'] ?? '~'
59-
return `${home}/.aindex/.tnmsc.json`
60-
}
61-
return napiBinding.getGlobalConfigPathStr()
57+
if (napiBinding != null) return napiBinding.getGlobalConfigPathStr()
58+
59+
const home = process.env['HOME'] ?? process.env['USERPROFILE'] ?? '~'
60+
return `${home}/.aindex/.tnmsc.json`
6261
}
6362

6463
/**

libraries/init-bundle/eslint.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ const config = eslint10({
99
type: 'lib',
1010
typescript: {
1111
strictTypescriptEslint: true,
12-
tsconfigPath: resolve(configDir, 'tsconfig.eslint.json'),
12+
tsconfigPath: resolve(configDir, 'tsconfig.json'),
1313
parserOptions: {
1414
allowDefaultProject: true
1515
}
1616
},
1717
ignores: [
1818
'.turbo/**',
1919
'*.md',
20-
'**/*.md'
20+
'**/*.md',
21+
'**/*.toml',
22+
'**/*.d.ts'
2123
]
2224
})
2325

libraries/init-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"private": true,
32
"name": "@truenine/init-bundle",
43
"type": "module",
54
"version": "2026.10223.10555",
5+
"private": true,
66
"description": "Rust-powered embedded file templates for tnmsc init command",
77
"license": "AGPL-3.0-only",
88
"exports": {

libraries/init-bundle/public/.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,6 @@
132132
"sound": "on"
133133
},
134134
"kiroAgent.experiments": {
135-
135+
136136
}
137137
}

libraries/input-plugins/eslint.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ const config = eslint10({
99
type: 'lib',
1010
typescript: {
1111
strictTypescriptEslint: true,
12-
tsconfigPath: resolve(configDir, 'tsconfig.eslint.json'),
12+
tsconfigPath: resolve(configDir, 'tsconfig.json'),
1313
parserOptions: {
1414
allowDefaultProject: true
1515
}
1616
},
1717
ignores: [
1818
'.turbo/**',
1919
'*.md',
20-
'**/*.md'
20+
'**/*.md',
21+
'**/*.toml',
22+
'**/*.d.ts'
2123
]
2224
})
2325

libraries/input-plugins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"private": true,
32
"name": "@truenine/input-plugins",
43
"type": "module",
54
"version": "2026.10223.10555",
5+
"private": true,
66
"description": "Rust-powered input plugins for tnmsc pipeline (stub)",
77
"license": "AGPL-3.0-only",
88
"exports": {

libraries/logger/eslint.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ const config = eslint10({
99
type: 'lib',
1010
typescript: {
1111
strictTypescriptEslint: true,
12-
tsconfigPath: resolve(configDir, 'tsconfig.eslint.json'),
12+
tsconfigPath: resolve(configDir, 'tsconfig.json'),
1313
parserOptions: {
1414
allowDefaultProject: true
1515
}
1616
},
1717
ignores: [
1818
'.turbo/**',
1919
'*.md',
20-
'**/*.md'
20+
'**/*.md',
21+
'**/*.toml',
22+
'**/*.d.ts'
2123
]
2224
})
2325

libraries/logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"private": true,
32
"name": "@truenine/logger",
43
"type": "module",
54
"version": "2026.10223.10555",
5+
"private": true,
66
"description": "Rust-powered structured logger for Node.js with pure-TS fallback",
77
"license": "AGPL-3.0-only",
88
"exports": {

0 commit comments

Comments
 (0)