mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
Update `package.json` in order to add JQuery Dirtyforms. See [issue #88](https://github.com/Sylius/SyliusDemo/pull/88/files) for more informations
28 lines
696 B
Markdown
28 lines
696 B
Markdown
# UPGRADE FROM `v1.5.X` TO `v1.6.0`
|
|
|
|
Require upgraded Sylius version using Composer:
|
|
|
|
```bash
|
|
composer require sylius/sylius:~1.6.0
|
|
```
|
|
|
|
Copy [a new migration file](https://raw.githubusercontent.com/Sylius/Sylius-Standard/master/src/Migrations/Version20190621035710.php) and run new migrations:
|
|
|
|
```bash
|
|
bin/console doctrine:migrations:migrate
|
|
```
|
|
|
|
Update your `package.json` in order to add `jquery.dirtyforms` as mentionned in [issue #88](https://github.com/Sylius/SyliusDemo/pull/88/files) :
|
|
|
|
```diff
|
|
{
|
|
"dependencies": {
|
|
"babel-polyfill": "^6.26.0",
|
|
"jquery": "^3.4.1",
|
|
+ "jquery.dirtyforms": "^2.0.0",
|
|
"lightbox2": "^2.9.0",
|
|
"semantic-ui-css": "^2.2.0"
|
|
},
|
|
...
|
|
}
|
|
```
|