Skip to content

Commit

Permalink
chore(deps): lock file maintenance (AmadeusITGroup#1255)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" in timezone
Europe/Paris, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/AmadeusITGroup/otter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
  • Loading branch information
fpaul-1A authored Jan 30, 2024
2 parents 44c1ce6 + 76cf6c4 commit 5916129
Show file tree
Hide file tree
Showing 2 changed files with 1,269 additions and 1,200 deletions.
4 changes: 2 additions & 2 deletions packages/@o3r/rules-engine/schematics/operator/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('Generate operator', () => {
}, initialTree);

const operatorsFile = tree.readText('/src/operators/basic/basic.operator.ts');
expect(operatorsFile).toBe(`import {
expect(operatorsFile.replace(/\r?\n/g, '\n')).toBe(`import {
Operator,
isString,
isValidDate
Expand Down Expand Up @@ -55,7 +55,7 @@ export const basic: Operator<string, Date> = {
}, initialTree);

const operatorsFile = tree.readText('/src/operators/unary/unary.operator.ts');
expect(operatorsFile).toBe(`import {
expect(operatorsFile.replace(/\r?\n/g, '\n')).toBe(`import {
UnaryOperator
} from '@o3r/rules-engine';
Expand Down
Loading

0 comments on commit 5916129

Please sign in to comment.