Upgrading
The blueprint installs dependencies into the consuming application.
The ember install
command runs two commands: npm install
and ember generate
.
Below are the commands to use during an version upgrade.
To the latest version
Uninstall and remove the addon from the package.json file. Next, re-install the addon.
Uninstall
npm uninstall ember-jsonapi-resources --save-dev
Re-install
ember install ember-jsonapi-resources
To a specific version…
Uninstall using npm uninstall
, change the version in your application's package.json
file, and re-install the addon.
Uninstall
npm uninstall ember-jsonapi-resources
Change version
ember-jsonapi-resources: ^2.0.0,
Re-install
npm install
(Optional) run addon blueprint to upgrade dependencies:
ember generate ember-jsonapi-resources