File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 14
14
"changelog" : " conventional-changelog -p angular -i CHANGELOG.md -s --commit-path ." ,
15
15
"test" : " vitest run" ,
16
16
"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 " ,
18
18
"prepare" : " is-ci || husky install"
19
19
},
20
20
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -4,14 +4,18 @@ import { fileURLToPath } from 'node:url'
4
4
5
5
export function patchStylelint ( extraTemplates : string [ ] ) {
6
6
const dir = path . resolve ( fileURLToPath ( import . meta. url ) , '../../templates/stylelint' )
7
+ const configFile = '.stylelintrc.cjs'
7
8
8
- let stylelintrc = fs . readFileSync ( path . join ( dir , '.stylelintrc.js' ) , 'utf-8' )
9
+ let stylelintrc = fs . readFileSync ( path . join ( dir , configFile ) , 'utf-8' )
9
10
10
11
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
+ )
12
16
}
13
17
14
18
return {
15
- '.stylelintrc.js' : stylelintrc
19
+ [ configFile ] : stylelintrc
16
20
}
17
21
}
You can’t perform that action at this time.
0 commit comments