Skip to content

Commit 5bafb84

Browse files
committed
fix: incorrect stylelint config file extension
1 parent 99c438f commit 5bafb84

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
1515
"test": "vitest run",
1616
"release": "ts-node --esm scripts/release.ts",
17-
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
17+
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q --allow-empty",
1818
"prepare": "is-ci || husky install"
1919
},
2020
"type": "module",

src/patch-stylelint.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ import { fileURLToPath } from 'node:url'
44

55
export function patchStylelint(extraTemplates: string[]) {
66
const dir = path.resolve(fileURLToPath(import.meta.url), '../../templates/stylelint')
7+
const configFile = '.stylelintrc.cjs'
78

8-
let stylelintrc = fs.readFileSync(path.join(dir, '.stylelintrc.js'), 'utf-8')
9+
let stylelintrc = fs.readFileSync(path.join(dir, configFile), 'utf-8')
910

1011
if (!extraTemplates.includes('prettier')) {
11-
stylelintrc = stylelintrc.replace('[\'stylelint-order\', \'stylelint-prettier\']', '[\'stylelint-order\']')
12+
stylelintrc = stylelintrc.replace(
13+
"['stylelint-order', 'stylelint-prettier']",
14+
"['stylelint-order']"
15+
)
1216
}
1317

1418
return {
15-
'.stylelintrc.js': stylelintrc
19+
[configFile]: stylelintrc
1620
}
1721
}

0 commit comments

Comments
 (0)