Skip to content

Commit 2cae559

Browse files
committed
Release 5.0.1
1 parent d231d56 commit 2cae559

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @oracle/oraclejet-tooling 5.0.0
1+
# @oracle/oraclejet-tooling 5.0.1
22

33
## About the tooling API
44
This tooling API contains methods to build and serve Oracle JET web and hybrid mobile apps. It is intended to be used with task running tools such as grunt or gulp. The APIs can also be invoked directly.

RELEASENOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Release Notes for oraclejet-tooling ##
22

3-
### 5.0.0
3+
### 5.0.1
44
* No changes
55

66
### 4.2.0

lib/indexHtmlInjector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ module.exports =
269269

270270
injectCdnBundleScript: (context) => {
271271
const masterJson = util.readPathMappingJson();
272-
if (!masterJson.cdns || !masterJson.cdns.jet || !masterJson.cdns.jet.config) {
272+
if (masterJson.use === 'local' || !masterJson.cdns || !masterJson.cdns.jet || !masterJson.cdns.jet.config) {
273273
return Promise.resolve(context);
274274
}
275275

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@oracle/oraclejet-tooling",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"license": "UPL-1.0",
55
"description": "Programmatic API to build and serve Oracle JET web and mobile applications",
66
"keywords": [

0 commit comments

Comments
 (0)