File tree Expand file tree Collapse file tree 7 files changed +18
-9
lines changed Expand file tree Collapse file tree 7 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 1
- * text =auto
2
- * .js text eol =lf
1
+ * text =auto eol =lf
3
2
yarn.lock - diff
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ concurrency:
11
11
group : ${{ github.workflow }}-${{ github.ref }}
12
12
cancel-in-progress : true
13
13
14
+ permissions :
15
+ contents : write
16
+
14
17
jobs :
15
18
autofix :
16
19
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ concurrency:
8
8
group : ${{ github.workflow }}-${{ github.ref }}
9
9
cancel-in-progress : true
10
10
11
+ permissions :
12
+ contents : read
13
+
11
14
jobs :
12
15
ci :
13
16
runs-on : ubuntu-latest
40
43
- name : Check test coverage
41
44
uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
42
45
with :
43
- token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos
46
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ concurrency:
8
8
group : ${{ github.workflow }}-${{ github.ref }}
9
9
cancel-in-progress : true
10
10
11
+ permissions :
12
+ contents : read
13
+
11
14
jobs :
12
15
publish :
13
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ jobs:
33
33
run : yarn --immutable
34
34
35
35
- name : Build
36
- run : yarn start build
36
+ run : yarn build
37
37
38
38
- name : Create Release Pull Request or Publish to npm
39
39
id : changesets
40
40
uses : changesets/action@v1
41
41
with :
42
42
commit : ' chore: release prettier-eslint'
43
43
title : ' chore: release prettier-eslint'
44
- publish : npm start release
44
+ publish : yarn start release
45
45
env :
46
46
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
47
NPM_CONFIG_PROVENANCE : true
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Formats your JavaScript using [`prettier`][prettier] followed by [`eslint --fix`
7
7
[ ![ version] [ version-badge ]] [ package ] [ ![ downloads] [ downloads-badge ]] [ npm-stat ]
8
8
[ ![ MIT License] [ license-badge ]] [ license ]
9
9
10
+ [ ![ Open Collective backers and sponsors] ( https://img.shields.io/opencollective/all/prettier-eslint?style=flat-square )] ( https://opencollective.com/prettier-eslint )
10
11
[ ![ All Contributors] ( https://img.shields.io/badge/all_contributors-59-orange.svg?style=flat-square )] ( #contributors )
11
12
[ ![ PRs Welcome] [ prs-badge ]] [ prs ] [ ![ Donate] [ donate-badge ]] [ donate ]
12
13
[ ![ Code of Conduct] [ coc-badge ]] [ coc ] [ ![ Examples] [ examples-badge ]] [ examples ]
Original file line number Diff line number Diff line change 32
32
" prettier-eslint"
33
33
],
34
34
"scripts" : {
35
- "build" : " yarn start build" ,
36
- "format" : " yarn start format" ,
37
- "lint" : " yarn start lint" ,
35
+ "build" : " nps build" ,
36
+ "format" : " nps format" ,
37
+ "lint" : " nps lint" ,
38
38
"prepare" : " patch-package && simple-git-hooks && yarn-berry-deduplicate || exit 0" ,
39
39
"start" : " nps" ,
40
- "test" : " yarn start test"
40
+ "test" : " nps test"
41
41
},
42
42
"peerDependencies" : {
43
43
"prettier-plugin-svelte" : " ^3.0.0" ,
You can’t perform that action at this time.
0 commit comments