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

Commit 2fa0469

Browse files
committed
Release 6.0.0
1 parent 611fd4c commit 2fa0469

File tree

18 files changed

+262
-173
lines changed

18 files changed

+262
-173
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @oracle/generator-oraclejet 5.2.0
1+
# @oracle/generator-oraclejet 6.0.0
22

33
## About the generator
44
This Yeoman generator for Oracle JET lets you quickly set up a project for use as a web application or hybrid mobile application for Android, iOS or Windows 10.

RELEASENOTES.md

Lines changed: 49 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,49 @@
1-
## Release Notes for generator-oraclejet ##
2-
3-
### 5.2.0
4-
* No changes
5-
6-
### 5.1.0
7-
* No changes
8-
9-
### 5.0.0
10-
* No changes
11-
12-
### 4.2.0
13-
* No changes
14-
15-
### 4.1.0
16-
* No changes
17-
18-
### 4.0.0
19-
* Moved module into @oracle scope, changing the name to @oracle/generator-oraclejet
20-
* This module should no longer be installed directly. Use @oracle/ojet-cli instead for scaffolding JET apps.
21-
22-
### 3.2.0
23-
* No changes
24-
25-
### 3.1.0
26-
* No changes
27-
28-
### 3.0.0
29-
* Replaced bower with npm
30-
* SASS tasks now run in CCA directories also
31-
* Added --destination=server-only option for web apps
32-
* Removed --destination=deviceOrEmulatorName option
33-
* Added ability to cutomize serve tasks such as watching additional files
34-
* Added gap://ready to inserted CSP meta tag for iOS 10 compatibility
35-
* Requires Node.js v4.0.0+ and npm v3.0.0+
36-
* Known issue: grunt serve to iOS device requires developer profile
37-
38-
### 2.3.0
39-
* Allow local files as scaffolding starting templates
40-
* Provide the ability to specify the Windows hybrid platform architecture
41-
* Better handling for determining which browser is launched when serving a hybrid app
42-
* Please use the latest version of yeoman as some earlier versions can cause issues with scaffolding
43-
44-
### 2.2.0
45-
46-
* Provide help page for generator
1+
## Release Notes for generator-oraclejet ##
2+
3+
### 6.0.0
4+
* No changes
5+
6+
### 5.2.0
7+
* No changes
8+
9+
### 5.1.0
10+
* No changes
11+
12+
### 5.0.0
13+
* No changes
14+
15+
### 4.2.0
16+
* No changes
17+
18+
### 4.1.0
19+
* No changes
20+
21+
### 4.0.0
22+
* Moved module into @oracle scope, changing the name to @oracle/generator-oraclejet
23+
* This module should no longer be installed directly. Use @oracle/ojet-cli instead for scaffolding JET apps.
24+
25+
### 3.2.0
26+
* No changes
27+
28+
### 3.1.0
29+
* No changes
30+
31+
### 3.0.0
32+
* Replaced bower with npm
33+
* SASS tasks now run in CCA directories also
34+
* Added --destination=server-only option for web apps
35+
* Removed --destination=deviceOrEmulatorName option
36+
* Added ability to cutomize serve tasks such as watching additional files
37+
* Added gap://ready to inserted CSP meta tag for iOS 10 compatibility
38+
* Requires Node.js v4.0.0+ and npm v3.0.0+
39+
* Known issue: grunt serve to iOS device requires developer profile
40+
41+
### 2.3.0
42+
* Allow local files as scaffolding starting templates
43+
* Provide the ability to specify the Windows hybrid platform architecture
44+
* Better handling for determining which browser is launched when serving a hybrid app
45+
* Please use the latest version of yeoman as some earlier versions can cause issues with scaffolding
46+
47+
### 2.2.0
48+
49+
* Provide help page for generator

common/template/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const _WEB = 'web';
1717

1818
const BLANK_TEMPLATE = blankTemplate.BLANK_TEMPLATE;
1919

20-
const _TEMPLATES_NPM_URL = '@oracle/oraclejet-templates@~5.2.0';
20+
const _TEMPLATES_NPM_URL = '@oracle/oraclejet-templates@~6.0.0';
2121

2222
const _TEMPLATES = [BLANK_TEMPLATE, 'basic', 'navbar', 'navdrawer'];
2323

generators/app/templates/blank/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<meta name="apple-mobile-web-app-title" content="Oracle JET">
3333

3434
<!-- injector:theme -->
35-
<link rel="stylesheet" href="css/libs/oj/v5.2.0/alta/oj-alta-min.css" id="css" />
35+
<link rel="stylesheet" href="css/libs/oj/v6.0.0/alta/oj-alta-min.css" id="css" />
3636
<!-- endinjector -->
3737

3838
</head>

generators/app/templates/blank/js/main.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ requirejs.config(
2424
'promise': 'libs/es6-promise/es6-promise',
2525
'hammerjs': 'libs/hammer/hammer-2.0.8',
2626
'ojdnd': 'libs/dnd-polyfill/dnd-polyfill-1.0.0',
27-
'ojs': 'libs/oj/v5.2.0/debug',
28-
'ojL10n': 'libs/oj/v5.2.0/ojL10n',
29-
'ojtranslations': 'libs/oj/v5.2.0/resources',
27+
'ojs': 'libs/oj/v6.0.0/debug',
28+
'ojL10n': 'libs/oj/v6.0.0/ojL10n',
29+
'ojtranslations': 'libs/oj/v6.0.0/resources',
3030
'text': 'libs/require/text',
3131
'signals': 'libs/js-signals/signals',
3232
'customElements': 'libs/webcomponents/custom-elements.min',
3333
'proj4': 'libs/proj4js/dist/proj4-src',
34-
'css': 'libs/require-css/css'
34+
'css': 'libs/require-css/css',
35+
'touchr': 'libs/touchr/touchr',
36+
'persist': 'libs/persist/min'
3537
}
3638
//endinjector
3739
,

generators/app/templates/blank/js/path_mapping.json

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
"use": "local",
44

55
"cdns": {
6-
"jet": {
7-
"prefix": "https://static.oracle.com/cdn/jet/v5.2.0/default/js",
8-
"config": "bundles-config.js"
9-
},
10-
"3rdparty": "https://static.oracle.com/cdn/jet/v5.2.0/3rdparty"
6+
"jet": "https://static.oracle.com/cdn/jet/v6.0.0/default/js",
7+
"3rdparty": "https://static.oracle.com/cdn/jet/v6.0.0/3rdparty"
118
},
129

1310
"libs": {
@@ -102,6 +99,23 @@
10299
}
103100
},
104101

102+
"persist": {
103+
"cdn": "3rdparty",
104+
"cwd": "node_modules/@oracle/oraclejet/dist/js/libs/persist",
105+
"debug": {
106+
"cwd": "debug",
107+
"src": ["**"],
108+
"path": "libs/persist/debug",
109+
"cdnPath": "persist/debug"
110+
},
111+
"release": {
112+
"cwd": "min",
113+
"src": ["**"],
114+
"path": "libs/persist/min",
115+
"cdnPath": "persist/min"
116+
}
117+
},
118+
105119
"ojs": {
106120
"cdn": "jet",
107121
"cwd": "node_modules/@oracle/oraclejet/dist/js/libs/oj",
@@ -179,6 +193,21 @@
179193
}
180194
},
181195

196+
"touchr": {
197+
"cdn": "3rdparty",
198+
"cwd": "node_modules/touchr/js",
199+
"debug": {
200+
"src": "touchr.js",
201+
"path": "libs/touchr/touchr.js",
202+
"cdnPath": "touchr/touchr"
203+
},
204+
"release": {
205+
"src": "touchr.js",
206+
"path": "libs/touchr/touchr.js",
207+
"cdnPath": "touchr/touchr"
208+
}
209+
},
210+
182211
"customElements": {
183212
"cdn": "3rdparty",
184213
"cwd": "node_modules/@webcomponents/custom-elements",
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
{
2-
"name": "oraclejet-app",
3-
"version": "1.0.0",
4-
"description": "An Oracle JavaScript Extension Toolkit(JET) web app",
5-
"dependencies": {
6-
"@oracle/oraclejet": "~5.2.0"
7-
},
8-
"devDependencies": {
9-
"grunt": "^1.0.1",
10-
"@oracle/grunt-oraclejet": "~5.2.0",
11-
"load-grunt-config": "0.19.2",
12-
"@oracle/oraclejet-tooling": "~5.2.0",
13-
"qunit-reporter-junit": "^1.1.1",
14-
"qunit": "^2.4.1"
15-
},
16-
"engines": {
17-
"node": ">=0.10.0"
18-
},
19-
"private": true
20-
}
1+
{
2+
"name": "oraclejet-app",
3+
"version": "1.0.0",
4+
"description": "An Oracle JavaScript Extension Toolkit(JET) web app",
5+
"dependencies": {
6+
"@oracle/oraclejet": "~6.0.0"
7+
},
8+
"devDependencies": {
9+
"grunt": "^1.0.1",
10+
"@oracle/grunt-oraclejet": "~6.0.0",
11+
"load-grunt-config": "0.19.2",
12+
"@oracle/oraclejet-tooling": "~6.0.0",
13+
"qunit-reporter-junit": "^1.1.1",
14+
"qunit": "^2.4.1"
15+
},
16+
"engines": {
17+
"node": ">=0.10.0"
18+
},
19+
"private": true
20+
}

generators/hybrid/templates/blank/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<link rel="icon" href="css/images/favicon.ico" type="image/x-icon" />
3131

3232
<!-- injector:theme -->
33-
<link rel="stylesheet" href="css/libs/oj/v5.2.0/alta/oj-alta-min.css" id="css" />
33+
<link rel="stylesheet" href="css/libs/oj/v6.0.0/alta/oj-alta-min.css" id="css" />
3434
<!-- endinjector -->
3535

3636
</head>

generators/hybrid/templates/blank/js/main.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ requirejs.config(
2424
'promise': 'libs/es6-promise/es6-promise',
2525
'hammerjs': 'libs/hammer/hammer-2.0.8',
2626
'ojdnd': 'libs/dnd-polyfill/dnd-polyfill-1.0.0',
27-
'ojs': 'libs/oj/v5.2.0/debug',
28-
'ojL10n': 'libs/oj/v5.2.0/ojL10n',
29-
'ojtranslations': 'libs/oj/v5.2.0/resources',
27+
'ojs': 'libs/oj/v6.0.0/debug',
28+
'ojL10n': 'libs/oj/v6.0.0/ojL10n',
29+
'ojtranslations': 'libs/oj/v6.0.0/resources',
3030
'text': 'libs/require/text',
3131
'signals': 'libs/js-signals/signals',
3232
'customElements': 'libs/webcomponents/custom-elements.min',
3333
'proj4': 'libs/proj4js/dist/proj4-src',
34-
'css': 'libs/require-css/css'
34+
'css': 'libs/require-css/css',
35+
'touchr': 'libs/touchr/touchr',
36+
'persist': 'libs/persist/debug'
3537
}
3638
//endinjector
3739
,

generators/hybrid/templates/blank/js/path_mapping.json

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
"use": "local",
44

55
"cdns": {
6-
"jet": {
7-
"prefix": "https://static.oracle.com/cdn/jet/v5.2.0/default/js",
8-
"config": "bundles-config.js"
9-
},
10-
"3rdparty": "https://static.oracle.com/cdn/jet/v5.2.0/3rdparty"
6+
"jet": "https://static.oracle.com/cdn/jet/v6.0.0/default/js",
7+
"3rdparty": "https://static.oracle.com/cdn/jet/v6.0.0/3rdparty"
118
},
129

1310
"libs": {
@@ -102,6 +99,23 @@
10299
}
103100
},
104101

102+
"persist": {
103+
"cdn": "3rdparty",
104+
"cwd": "node_modules/@oracle/oraclejet/dist/js/libs/persist",
105+
"debug": {
106+
"cwd": "debug",
107+
"src": ["**"],
108+
"path": "libs/persist/debug",
109+
"cdnPath": "persist/debug"
110+
},
111+
"release": {
112+
"cwd": "min",
113+
"src": ["**"],
114+
"path": "libs/persist/min",
115+
"cdnPath": "persist/min"
116+
}
117+
},
118+
105119
"ojs": {
106120
"cdn": "jet",
107121
"cwd": "node_modules/@oracle/oraclejet/dist/js/libs/oj",
@@ -179,6 +193,21 @@
179193
}
180194
},
181195

196+
"touchr": {
197+
"cdn": "3rdparty",
198+
"cwd": "node_modules/touchr/js",
199+
"debug": {
200+
"src": "touchr.js",
201+
"path": "libs/touchr/touchr.js",
202+
"cdnPath": "touchr/touchr"
203+
},
204+
"release": {
205+
"src": "touchr.js",
206+
"path": "libs/touchr/touchr.js",
207+
"cdnPath": "touchr/touchr"
208+
}
209+
},
210+
182211
"customElements": {
183212
"cdn": "3rdparty",
184213
"cwd": "node_modules/@webcomponents/custom-elements",

0 commit comments

Comments
 (0)