B Oracle JET v5.2.0 Tooling Migration
If you used Oracle JET tooling to scaffold your application with Oracle JET v4.x.0 , you can migrate your application manually to v5.2.0.
Before you migrate your application, be sure to check the Oracle JET Release Notes for any component, framework, or other change that could impact your application.
Important:
This process is not supported for Oracle JET releases prior tov4.0.0.
Migrating a v4.x.0 Application to v5.2.0
To migrate your Oracle JET application from v4.x.0 to v5.2.0, you must upgrade npm packages, update theme and library reference paths, and replace main-release-paths.json with path_mapping.json.
src/js/path_mapping.json replaces src/js/main-release-paths.json, and you no longer need to update paths manually in src/js/main.js or scripts/config/oraclejet-build.js.
Migrating a v5.x.0 Application to v5.2.0
When upgrading to a minor release version of Oracle JET, such as from 5.0.0 to 5.2.0, where features changes do not introduce backward incompatibility from the previous release, you can update the Oracle JET command-line interface (CLI) and leave npm unchanged.
To update the Oracle JET CLI, use this command.
npm update -g @oracle/ojet-cliTo migrate your application to use Oracle JET 5.2.0 tooling, run these commands on your application root:
npm uninstall @oracle/oraclejet @oracle/oraclejet-tooling
npm install @oracle/oraclejet@~5.2.0 @oracle/oraclejet-tooling~@5.2.0 --save