Skip to content

Commit

Permalink
feat(docs): update the q/app-vite & q/app-webpack beta upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Aug 15, 2024
1 parent 600c6f7 commit d8b3a30
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/src/pages/quasar-cli-vite/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,28 @@ Preparations:
}
```

<br>

* The feature flag files must be deleted from your project folder. They need to be generated again (will happen automatically).

```tabs
<<| bash rimraf through npx |>>
# in project folder root:
$ npx rimraf -g ./**/*-flag.d.ts
$ quasar build # or dev
<<| bash Unix-like (Linux, macOS) |>>
# in project folder root:
$ rm ./**/*-flag.d.ts
$ quasar build # or dev
<<| bash Windows (CMD) |>>
# in project folder root:
$ del /s *-flag.d.ts
$ quasar build &:: or dev
<<| bash Windows (PowerShell) |>>
# in project folder root:
$ Remove-Item -Recurse -Filter *-flag.d.ts
$ quasar build # or dev
```

### Linting (TS or JS)

Expand Down
23 changes: 23 additions & 0 deletions docs/src/pages/quasar-cli-webpack/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,29 @@ Preparations:
}
```

<br>

* The feature flag files must be deleted from your project folder. They need to be generated again (will happen automatically).

```tabs
<<| bash rimraf through npx |>>
# in project folder root:
$ npx rimraf -g ./**/*-flag.d.ts
$ quasar build # or dev
<<| bash Unix-like (Linux, macOS) |>>
# in project folder root:
$ rm ./**/*-flag.d.ts
$ quasar build # or dev
<<| bash Windows (CMD) |>>
# in project folder root:
$ del /s *-flag.d.ts
$ quasar build &:: or dev
<<| bash Windows (PowerShell) |>>
# in project folder root:
$ Remove-Item -Recurse -Filter *-flag.d.ts
$ quasar build # or dev
```

### SPA / Capacitor / Cordova modes changes
No need to change anything in the `/src`, `/src-capacitor` or `/src-cordova` folders.

Expand Down

0 comments on commit d8b3a30

Please sign in to comment.