-
Notifications
You must be signed in to change notification settings - Fork 27
chore(deps): update dependency replace-in-file to v7 #284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
0b16ac8 to
c4c71a9
Compare
c4c71a9 to
2a06599
Compare
266c07e to
0a5fc18
Compare
0a5fc18 to
e444885
Compare
On upgrading to `replace-in-file` v7, our windows tests started to fail
in CI:
```
Run node index.js component tmp-component-starter
node index.js component tmp-component-starter
shell: C:\Program Files\Git\bin\bash.EXE --noprofile --norc -e -o pipefail {0}
✖ No files match the pattern: D:\a\create-stencil\create-stencil\tmp-component-starter\*
```
This was result of windows paths not being properly escaped. By adding
the configuration in this commit, we can resolve the issue - it uses
`\\` as a path separator only (not as an escape character)
STENCIL-969: update dependency replace-in-file to v7
538309a to
0e46aa7
Compare
|
Ran this locally by checking out this branch and: npm ci \
&& npm run build \
&& node index.js \
&& cd hello-world \
&& npm i \
&& npm t \
&& npm startWhere 'hello-world' is the name of the project used to create a component starter. Project built, ran tests, and dev server all ran as expected |
| glob: { | ||
| windowsPathsNoEscape: true, | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tanner-reits || @christian-bromann can you offer a second set of eyes on this PR? I had to update this in order to get CI to pass on Windows. See 0e46aa7 for more information
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
This PR contains the following updates:
^6.1.0->^7.0.0Release Notes
adamreisnz/replace-in-file (replace-in-file)
v7.0.2Compare Source
v7.0.1Compare Source
v7.0.0Compare Source
Strings provided to the
fromvalue are now escaped for regex matching when counting of matches is enabled. This is unlikely to result in any breaking changes, but as a precaution the major version has been bumped.Configuration
📅 Schedule: Branch creation - "every weekday before 11am" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.