chore: household stuff due to updated deps
Co-authored-by: Thijs Louisse <Thijs.Louisse@ing.com>
This commit is contained in:
parent
8641dbe63b
commit
6edecddef2
4 changed files with 12 additions and 3 deletions
|
|
@ -16,3 +16,11 @@ trim_trailing_whitespace = false
|
|||
block_comment_start = /**
|
||||
block_comment = *
|
||||
block_comment_end = */
|
||||
|
||||
[*.{d.ts,patch,editorconfig}]
|
||||
charset = unset
|
||||
indent_style = unset
|
||||
indent_size = unset
|
||||
end_of_line = unset
|
||||
insert_final_newline = unset
|
||||
trim_trailing_whitespace = unset
|
||||
|
|
@ -7,3 +7,4 @@ storybook-static/
|
|||
_site-dev
|
||||
_site
|
||||
docs/_merged_*
|
||||
patches/
|
||||
|
|
|
|||
2
.github/workflows/verify.yml
vendored
2
.github/workflows/verify.yml
vendored
|
|
@ -72,7 +72,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x, 14.x]
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
os: [ubuntu-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable import/no-extraneous-dependencies */
|
||||
const { exec } = require('child_process');
|
||||
const defaults = require('prettier-package-json/src/defaultOptions');
|
||||
const defaults = require('prettier-package-json/build/defaultOptions');
|
||||
|
||||
const currOrder = defaults.keyOrder;
|
||||
const currOrder = defaults.defaultOptions.keyOrder;
|
||||
|
||||
// move version from position 11 to position 3
|
||||
currOrder.splice(3, 0, currOrder.splice(11, 1)[0]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue