Skip to content

Commit ce16d2c

Browse files
authored
Merge pull request #199 from oracle/bump-jet-17.1
fix(deps): bump node-jet template to JET v17.1
2 parents 91a1c7e + 08a5e27 commit ce16d2c

File tree

5 files changed

+33
-30
lines changed

5 files changed

+33
-30
lines changed

Diff for: templates/node-jet/oraclejetconfig.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
"themes": "staged-themes"
1616
}
1717
},
18+
"unversioned": true,
1819
"defaultBrowser": "chrome",
19-
"sassVer": "8.0.0",
20+
"sassVer": "9.0.0",
2021
"defaultTheme": "redwood",
21-
"typescriptLibraries": "[email protected] yargs-parser@~13.1.2",
22+
"fontUrl": "https://static.oracle.com/cdn/fnd/gallery/2404.0.0/images/iconfont/ojuxIconFont.min.css",
23+
"typescriptLibraries": "[email protected] yargs-parser@~13.1.2",
2224
"webpackLibraries": "[email protected] @types/[email protected] webpack-dev-server style-loader css-loader sass-loader sass [email protected] raw-loader noop-loader html-webpack-plugin html-replace-webpack-plugin copy-webpack-plugin @prefresh/webpack @prefresh/babel-plugin webpack-merge compression-webpack-plugin mini-css-extract-plugin clean-webpack-plugin css-fix-url-loader",
2325
24-
"jestTestingLibraries": "[email protected] @testing-library/[email protected] @types/[email protected] [email protected] @oracle/oraclejet-jest-preset@~16.1.0",
26+
"jestTestingLibraries": "[email protected] @testing-library/[email protected] @types/[email protected] [email protected] @oracle/oraclejet-jest-preset@~17.1.0",
2527
"architecture": "vdom",
2628
"watchInterval": 1000
2729
}

Diff for: templates/node-jet/package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@
77
"lint": "eslint src/ --max-warnings 0"
88
},
99
"dependencies": {
10-
"@oracle/oraclejet": "~17.0.1",
11-
"@oracle/oraclejet-core-pack": "~17.0.1",
12-
"body-parser": "^1.20.2",
10+
"@oracle/oraclejet": "~17.1.0",
11+
"@oracle/oraclejet-core-pack": "~17.1.0",
12+
"body-parser": "^1.20.3",
1313
"cors": "^2.8.5",
14-
"dotenv": "^16.4.5",
15-
"express": "^4.19.2",
16-
"http-proxy-middleware": "^3.0.0",
17-
"morgan": "^1.10.0",
18-
"oracledb": "^6.6.0"
14+
"dotenv": "16.4.7",
15+
"express": "4.21.2",
16+
"http-proxy-middleware": "3.0.3",
17+
"morgan": "1.10.0",
18+
"oracledb": "6.7.1"
1919
},
2020
"devDependencies": {
21-
"@oracle/ojet-cli": "~17.0.0",
22-
"concurrently": "^8.2.2",
23-
"extract-zip": "^2.0.1",
24-
"fs-extra": "^11.2.0",
25-
"glob": "^11.0.0",
26-
"typescript": "^5.5.4",
27-
"underscore": "^1.13.7",
28-
"yargs-parser": "21.1.1",
29-
"eslint": "^9.9.1",
30-
"@eslint/js": "^9.9.1",
31-
"typescript-eslint": "8.3.0"
21+
"@oracle/ojet-cli": "~17.1.0",
22+
"extract-zip": "^1.7.0",
23+
"fs-extra": "^8.1.0",
24+
"glob": "10.4.5",
25+
"typescript": "5.4.5",
26+
"underscore": "^1.10.2",
27+
"yargs-parser": "13.1.2",
28+
"concurrently": "^9.1.2",
29+
"eslint": "^9.18.0",
30+
"@eslint/js": "^9.18.0",
31+
"typescript-eslint": "8.20.0"
3232
},
3333
"engines": {
3434
"node": ">=16.0.0"

Diff for: templates/node-jet/path_mapping.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"use": "local",
33
"cdns": {
44
"jet": {
5-
"prefix": "https://static.oracle.com/cdn/jet/16.1.0/default/js",
6-
"css": "https://static.oracle.com/cdn/jet/16.1.0/default/css",
7-
"csspreact": "https://static.oracle.com/cdn/jet/16.1.0/3rdparty/oraclejet-preact/amd",
5+
"prefix": "https://static.oracle.com/cdn/jet/17.1.0/default/js",
6+
"css": "https://static.oracle.com/cdn/jet/17.1.0/default/css",
7+
"csspreact": "https://static.oracle.com/cdn/jet/17.1.0/3rdparty/oraclejet-preact/amd",
88
"config": "bundles-config.js"
99
},
10-
"3rdparty": "https://static.oracle.com/cdn/jet/16.1.0/3rdparty"
10+
"3rdparty": "https://static.oracle.com/cdn/jet/17.1.0/3rdparty"
1111
},
1212
"libs": {
1313
"knockout": {

Diff for: templates/node-jet/src/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
<!-- injector:theme -->
3636
<!-- endinjector -->
3737
<!-- This contains icon fonts used by the starter template -->
38-
<link rel="stylesheet" id="uxiconFont" href="https://static.oracle.com/cdn/fnd/gallery/2404.0.0/images/iconfont/ojuxIconFont.min.css"/>
38+
<!-- injector:font -->
39+
<!-- endinjector:font -->
3940
<!-- This is where you would add any app specific styling -->
4041
<link rel="stylesheet" href="styles/app.css" type="text/css" />
4142
</head>

Diff for: templates/node-jet/src/main.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
*/
2626
// injector:mainReleasePaths
2727
{
28-
'ojs': 'libs/oj/16.1.0/debug',
29-
'ojL10n': 'libs/oj/16.1.0/ojL10n',
30-
'ojtranslations': 'libs/oj/16.1.0/resources',
28+
'ojs': 'libs/oj/17.1.0/debug',
29+
'ojL10n': 'libs/oj/17.1.0/ojL10n',
30+
'ojtranslations': 'libs/oj/17.1.0/resources',
3131
'knockout': 'libs/knockout/knockout-3.5.1.debug',
3232
'jquery': 'libs/jquery/jquery-3.6.4',
3333
'jqueryui-amd': 'libs/jquery/jqueryui-amd-1.13.2',

0 commit comments

Comments
 (0)