Skip to content

Commit

Permalink
v1.88.2 - prettier use lf line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Dec 5, 2023
1 parent 595dbf9 commit 09177a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v1.88.2 2023 December 5

- configure prettier to use lf line endings, to prevent complications on Windows

## v1.88.1 2023 December 4

- error on unknown configuration properties
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boundation",
"version": "1.88.1",
"version": "1.88.2",
"description": "Automatic scaffolding and upgrading of your JavaScript ecosystem projects using Bevry's best practices",
"homepage": "https://github.com/bevry/boundation",
"license": "Artistic-2.0",
Expand Down
1 change: 1 addition & 0 deletions source/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ export async function updateRuntime(state) {
semi: false,
singleQuote: true,
trailingComma: answers.keywords.has('es5') ? 'es5' : 'all',
endOfLine: 'lf',
}
state.scripts['our:verify:eslint'] = [
'eslint',
Expand Down

0 comments on commit 09177a0

Please sign in to comment.