Skip to content

Commit

Permalink
chore(deps): update dependency prettier to v3 (#5064)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency prettier to v3

* Update ESLint plugin and fix tests

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
  • Loading branch information
3 people committed Jul 17, 2023
1 parent e78fbe8 commit fdf48d0
Show file tree
Hide file tree
Showing 7 changed files with 625 additions and 39 deletions.
3 changes: 2 additions & 1 deletion docs/repl/components/ReplMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ input {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?58001839');
src: url('../font/fontello.eot?58001839#iefix') format('embedded-opentype'),
src:
url('../font/fontello.eot?58001839#iefix') format('embedded-opentype'),
url('../font/fontello.woff?58001839') format('woff'),
url('../font/fontello.ttf?58001839') format('truetype'),
url('../font/fontello.svg?58001839#fontello') format('svg');
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ rollup src/main.js src/main2.js -f es -d dist
```

```html
<!DOCTYPE html>
<!doctype html>
<script type="module">
import main2 from './dist/main2.js';
main2();
Expand All @@ -422,7 +422,7 @@ npm install --save-dev systemjs
And then load either or both entry points in an HTML page as needed:

```html
<!DOCTYPE html>
<!doctype html>
<script src="node_modules/systemjs/dist/s.min.js"></script>
<script>
System.import('./dist/main2.js').then(({ default: main }) => main());
Expand Down

0 comments on commit fdf48d0

Please sign in to comment.