Skip to content
This repository was archived by the owner on Jul 2, 2020. It is now read-only.

Commit 3bb17a7

Browse files
committed
Release 5.0.0
1 parent 9ca9fe0 commit 3bb17a7

File tree

6 files changed

+9
-28
lines changed

6 files changed

+9
-28
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# @oracle/grunt-oraclejet 4.2.0
1+
# @oracle/grunt-oraclejet 5.0.0
22

33
## About the module
44
This module contains build and serve tasks for Oracle JET web and hybrid mobile applications.
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=jet420).
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=jet500&id=homepage).
1010

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

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Release Notes for grunt-oraclejet ##
22

3+
### 5.0.0
4+
* No changes
5+
36
### 4.2.0
47
* No changes
58

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@oracle/grunt-oraclejet",
33
"description": "Build and serve tasks for Oracle JET web and mobile applications",
4-
"version": "4.2.0",
4+
"version": "5.0.0",
55
"license": "UPL-1.0",
66
"homepage": "http://oraclejet.org",
77
"main": "tasks/build.js",
@@ -19,13 +19,13 @@
1919
},
2020
"dependencies":
2121
{
22-
"@oracle/oraclejet-tooling": "~4.2.0"
22+
"@oracle/oraclejet-tooling": "~5.0.0"
2323
},
2424
"devDependencies": {
2525
"eslint": "~3.19.0"
2626
},
2727
"keywords": [
2828
"gruntplugin"
2929
],
30-
"jetdocversion": "420"
30+
"jetdocversion": "500"
3131
}

tasks/oraclejet-build.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const utils = require('./utils');
1212

1313
module.exports = function (grunt) {
1414
grunt.registerTask('oraclejet-build', 'Builds the oraclejet application.', (target) => {
15-
utils.logModuleName();
1615
utils.validateFlags(grunt, grunt.option.flags());
1716

1817
const done = grunt.task.current.async();

tasks/oraclejet-serve.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ module.exports = (grunt) => {
9090
* @public
9191
*/
9292
grunt.registerTask('oraclejet-serve', 'Serves the oraclejet application.', function (buildType) {
93-
utils.logModuleName();
9493
utils.validateFlags(grunt, grunt.option.flags());
9594

9695
_validateDestination();

tasks/utils.js

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -115,34 +115,14 @@ utils.validateFlags = (gruntAsArg, flags) => {
115115
}
116116
};
117117

118-
/**
119-
* ## logModuleName
120-
*
121-
* @public
122-
*/
123-
utils.logModuleName = () => {
124-
console.log('\x1b[42m', 'Oracle JET Grunt plugin', '\x1b[0m');
125-
utils.log('Processing Grunt command...');
126-
};
127-
128-
/**
129-
* ## log.success
130-
*
131-
* @public
132-
* @param {string} message
133-
*/
134-
utils.log.info = (message) => {
135-
console.log(`\x1b[32mJET Info: ${message}\x1b[0m`);
136-
};
137-
138118
/**
139119
* ## log.warning
140120
*
141121
* @public
142122
* @param {string} message
143123
*/
144124
utils.log.warning = (message) => {
145-
console.log(`\x1b[33mJET Warning: ${message}\x1b[0m`);
125+
console.log(`\x1b[33mWarning: ${message}\x1b[0m`);
146126
};
147127

148128

0 commit comments

Comments
 (0)