Skip to content

Commit

Permalink
Merge main into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 31, 2023
2 parents ead9e65 + b316b74 commit d8ed6b2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 9.3.5

### Patch Changes

- [#1475](https://github.com/equinor/fusion-framework/pull/1475) [`9b22a14d`](https://github.com/equinor/fusion-framework/commit/9b22a14d791878a83b6df84190922d3143fdc0df) Thanks [@odinr](https://github.com/odinr)! - fix log loop

```bash
if (msg.match(/^Failed to load url \/assets/)) {
RangeError: Maximum call stack size exceeded
at String.match (<anonymous>)
```
## 9.3.4
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/fusion-framework-cli",
"version": "9.3.4",
"version": "9.3.5",
"keywords": [
"Fusion",
"Fusion Framework",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/lib/vite-logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createLogger as _createLogger } from 'vite';

export const createViteLogger = () => {
const logger = _createLogger();
const originalLogger = logger;
const originalLogger = { ...logger };

logger.error = (msg, opt) => {
if (msg.match(/^Failed to load url \/assets/)) {
Expand Down

0 comments on commit d8ed6b2

Please sign in to comment.