Skip to content

Commit

Permalink
Release 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benm071 committed Jul 19, 2019
1 parent 4b3be9f commit 5adf270
Show file tree
Hide file tree
Showing 6 changed files with 2,657 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# @oracle/oraclejet-tooling 7.0.0
# @oracle/oraclejet-tooling 7.1.0

## About the tooling API
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.

This is an open source project maintained by Oracle Corp.

## Installation
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=jet700&id=homepage).
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=jet710&id=homepage).

## [Contributing](https://github.com/oracle/oraclejet-tooling/tree/master/CONTRIBUTING.md)
Oracle JET is an open source project. Pull Requests are currently not being accepted. See
Expand Down
27 changes: 27 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
## Release Notes for oraclejet-tooling ##

### 7.1.0
* No changes

### 7.0.0
* No changes

### 6.2.0
* No changes

### 6.1.0
* No changes

### 6.0.0
* No changes

### 5.2.0
* No changes

### 5.1.0
* No changes

### 5.0.0
* No changes

### 4.2.0
* No changes

### 4.1.0
* No changes

### 4.0.0
* Moved module into @oracle scope, changing the name to @oracle/oraclejet-tooling

Expand Down
2 changes: 1 addition & 1 deletion lib/templates/pack/component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@pack@",
"version": "1.0.0",
"jetVersion": "7.0.0",
"jetVersion": "7.1.0",
"type": "pack",
"displayName": "A user friendly, translatable name of the pack.",
"description": "A translatable high-level description for the pack.",
Expand Down
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@ util.getComponentVersion = function (component) {
*
*/
util.getJetpackCompNameFromConfigObj = function (configComponentVersionObj, pathComponentsEnd) {
const matchingName = Object.keys(configComponentVersionObj).find(key => pathComponentsEnd.indexOf(`/${key.toString()}/`) !== -1);
const matchingName = Object.keys(configComponentVersionObj).find(key => pathComponentsEnd.split(path.sep).indexOf(`${key.toString()}`) !== -1);
return matchingName;
};

Expand Down
Loading

0 comments on commit 5adf270

Please sign in to comment.