Skip to content

Commit 0eef0ab

Browse files
committed
Release 16.0.0
1 parent f137d6f commit 0eef0ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+700
-573
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to oraclejet-tooling
22

3-
*Copyright (c) 2014, 2023 Oracle and/or its affiliates
3+
*Copyright (c) 2014, 2024 Oracle and/or its affiliates
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/*
66

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023 Oracle and/or its affiliates.
1+
Copyright (c) 2024 Oracle and/or its affiliates.
22

33
The Universal Permissive License (UPL), Version 1.0
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# @oracle/oraclejet-tooling 15.1.0
1+
# @oracle/oraclejet-tooling 16.0.0
22

33
## About the tooling API
44
This tooling API contains methods to build and serve Oracle JET web 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 app following the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet1510&id=homepage).
9+
This module will be automatically installed when you scaffold a web app following the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet1600&id=homepage).
1010

1111
## Contributing
1212
This project is not accepting external contributions at this time. For bugs or enhancement requests, please file a GitHub issue unless it’s security related. When filing a bug remember that the better written the bug is, the more likely it is to be fixed. If you think you’ve found a security vulnerability, do not raise a GitHub issue and follow the instructions in our [security policy](./SECURITY.md).
@@ -16,5 +16,5 @@ This project is not accepting external contributions at this time. For bugs or e
1616
Please consult the [security guide](./SECURITY.md) for our responsible security vulnerability disclosure process
1717

1818
## License
19-
Copyright (c) 2023 Oracle and/or its affiliates and released under the
19+
Copyright (c) 2024 Oracle and/or its affiliates and released under the
2020
[Universal Permissive License (UPL)](https://oss.oracle.com/licenses/upl/), Version 1.0

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-
### 15.1.0
3+
### 16.0.0
44

55
### 11.0.0
66
* oraclejet-tooling now requires node 12.21 or later

config/eslintcustom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55

lib/add.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env node
22
/**
3-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
3+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/
66

lib/addjsdoc.js

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
#! /usr/bin/env node
1+
#! /usr/bin/env node
22
/**
3-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
3+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/
66
77
*/
8-
9-
'use strict';
10-
11-
/**
12-
* ## Dependencies
13-
*/
14-
const util = require('./util');
15-
16-
/**
17-
* # 'addJsdoc'
18-
*
19-
* @public
20-
* @param {Object} options
21-
* @returns {Promise}
22-
*/
23-
module.exports = function (options) {
24-
util.log('Installing jsdoc');
25-
const installer = util.getInstallerCommand({ options });
26-
27-
return util.spawn(installer.installer, [installer.verbs.install, '[email protected]', '--save-dev=true', '--save-exact']);
28-
};
8+
9+
'use strict';
10+
11+
/**
12+
* ## Dependencies
13+
*/
14+
const util = require('./util');
15+
16+
/**
17+
* # 'addJsdoc'
18+
*
19+
* @public
20+
* @param {Object} options
21+
* @returns {Promise}
22+
*/
23+
module.exports = function (options) {
24+
util.log('Installing jsdoc');
25+
const installer = util.getInstallerCommand({ options });
26+
27+
return util.spawn(installer.installer, [installer.verbs.install, '[email protected]', installer.flags.save, installer.flags.exact]);
28+
};

lib/addpcss.js

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
#! /usr/bin/env node
1+
#! /usr/bin/env node
22
/**
3-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
3+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/
66
77
*/
8-
9-
'use strict';
10-
11-
/**
12-
* ## Dependencies
13-
*/
14-
const util = require('./util');
15-
const config = require('./config');
16-
17-
/**
18-
* # 'addPcss'
19-
*
20-
* @public
21-
* @param {Object} options
22-
* @returns {Promise}
23-
*/
24-
module.exports = function (options) {
25-
const installer = util.getInstallerCommand({ options });
26-
util.log('Installing sass and pcss');
27-
config.loadOraclejetConfig();
28-
const sassVer = config.data.sassVer;
29-
30-
return util.spawn(installer.installer, [installer.verbs.install,
31-
`node-sass@${sassVer}`,
32-
33-
34-
'--save-dev=true']);
35-
};
8+
9+
'use strict';
10+
11+
/**
12+
* ## Dependencies
13+
*/
14+
const util = require('./util');
15+
const config = require('./config');
16+
17+
/**
18+
* # 'addPcss'
19+
*
20+
* @public
21+
* @param {Object} options
22+
* @returns {Promise}
23+
*/
24+
module.exports = function (options) {
25+
const installer = util.getInstallerCommand({ options });
26+
util.log('Installing sass and pcss');
27+
config.loadOraclejetConfig();
28+
const sassVer = config.data.sassVer;
29+
30+
return util.spawn(installer.installer, [installer.verbs.install,
31+
`node-sass@${sassVer}`,
32+
33+
34+
installer.flags.save]);
35+
};

lib/addpwa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env node
22
/**
3-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
3+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/
66

lib/addsass.js

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
#! /usr/bin/env node
1+
#! /usr/bin/env node
22
/**
3-
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
3+
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
44
Licensed under The Universal Permissive License (UPL), Version 1.0
55
as shown at https://oss.oracle.com/licenses/upl/
66
77
*/
8-
9-
'use strict';
10-
11-
/**
12-
* ## Dependencies
13-
*/
14-
const util = require('./util');
15-
const config = require('./config');
16-
17-
/**
18-
* # 'addSass'
19-
*
20-
* @public
21-
* @param {Object} options
22-
* @returns {Promise}
23-
*/
24-
module.exports = function (options) {
25-
config.loadOraclejetConfig();
26-
const sassVer = config.data.sassVer;
27-
const installer = util.getInstallerCommand({ options });
28-
29-
util.log('Installing node-sass');
30-
return util.spawn(installer.installer, [installer.verbs.install, `node-sass@${sassVer}`, '--save-dev=true']);
31-
};
8+
9+
'use strict';
10+
11+
/**
12+
* ## Dependencies
13+
*/
14+
const util = require('./util');
15+
const config = require('./config');
16+
17+
/**
18+
* # 'addSass'
19+
*
20+
* @public
21+
* @param {Object} options
22+
* @returns {Promise}
23+
*/
24+
module.exports = function (options) {
25+
config.loadOraclejetConfig();
26+
const sassVer = config.data.sassVer;
27+
const installer = util.getInstallerCommand({ options });
28+
29+
util.log('Installing node-sass');
30+
return util.spawn(installer.installer, [installer.verbs.install, `node-sass@${sassVer}`, installer.flags.save]);
31+
};

0 commit comments

Comments
 (0)