Skip to content

Commit ce9dfa3

Browse files
committed
chore: wip
1 parent 637866d commit ce9dfa3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.stacks/core/buddy/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async function main() {
6767
main()
6868

6969
async function installIfVersionMismatch(): void {
70-
const dependenciesYaml = fs.readFileSync('./tea.yaml', 'utf8')
70+
const dependenciesYaml = fs.readFileSync(projectPath('tea.yaml'), 'utf8')
7171
const dependencies = parseYaml(dependenciesYaml).dependencies
7272

7373
const requiredNodeVersion = dependencies['nodejs.org']

commitlint.config.cjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
const { readdirSync } = require('node:fs')
22
const { resolve } = require('node:path')
33
const { paramCase } = require('change-case')
4-
// eslint-disable-next-line no-console
5-
console.log('here __filename', __filename)
64
const jiti = require('jiti')(__filename)
75

8-
const git = jiti('./config/git.ts', {
9-
alias: { // test this with the ./config/git config import
10-
'@': resolve(__dirname, './'),
11-
},
12-
})
6+
const git = jiti('./config/git.ts',
7+
// {
8+
// alias: { // test this with the ./config/git config import
9+
// '@': resolve(__dirname, './'),
10+
// },
11+
// }
12+
)
1313

1414
const toDelete = ['readme-md']
1515

0 commit comments

Comments
 (0)