Skip to content

Commit c3d5648

Browse files
committed
Release 9.0.1
1 parent 18c0612 commit c3d5648

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# @oracle/oraclejet-tooling 9.0.0
1+
# @oracle/oraclejet-tooling 9.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.
55

66
This is an open source project maintained by Oracle Corp.
77

88
## Installation
9-
This module will be automatically installed when you scaffold a web or hybrid mobile app following the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet900&id=homepage).
9+
This module will be automatically installed when you scaffold a web or hybrid mobile app following the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet901&id=homepage).
1010

1111
## [Contributing](https://github.com/oracle/oraclejet-tooling/blob/master/CONTRIBUTING.md)
1212
Oracle JET is an open source project. Pull Requests are currently not being accepted. See

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-
### 9.0.0
3+
### 9.0.1
44
* No changes
55

66
### 5.2.0

lib/indexHtmlInjector.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,10 @@ function _getStyleLinkBase(css, theme, cssvars, buildType) {
144144
return `${masterJson.cdns.jet.css}/${theme.name}${platform}/oj-${theme.name}${cssvars}${linkExt}`;
145145
}
146146

147+
const platform = (theme.name === 'redwood') ? 'web' : theme.platform;
147148
return (theme.version) ?
148-
`${css}/${theme.name}/${theme.version}/${theme.platform}/${theme.name}${cssvars}${linkExt}` :
149-
`${css}/${theme.name}/${theme.platform}/${theme.name}${cssvars}${linkExt}`;
149+
`${css}/${theme.name}/${theme.version}/${platform}/${theme.name}${cssvars}${linkExt}` :
150+
`${css}/${theme.name}/${platform}/${theme.name}${cssvars}${linkExt}`;
150151
}
151152

152153
function _isUseCdn(name) {

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": "9.0.0",
3+
"version": "9.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)