Skip to content

Commit ac81ffc

Browse files
committed
Release 18.0.0
1 parent 0d6097e commit ac81ffc

File tree

218 files changed

+3628
-929
lines changed

Some content is hidden

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

218 files changed

+3628
-929
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 ojet-cli
22

3-
*Copyright (c) 2014, 2024 Oracle and/or its affiliates
3+
*Copyright (c) 2014, 2025 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,6 +1,6 @@
11
# ojet-cli
22

3-
Copyright (c) 2024 Oracle and/or its affiliates.
3+
Copyright (c) 2025 Oracle and/or its affiliates.
44

55
Licensed under The Universal Permissive License (UPL), Version 1.0
66
as shown at https://oss.oracle.com/licenses/upl/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @oracle/ojet-cli 17.1.0
1+
# @oracle/ojet-cli 18.0.0
22

33
## About the module
44
This module contains a command line interface for Oracle JET web application development.
@@ -59,7 +59,7 @@ Or view help on adding a plugin:
5959
ojet help add plugin
6060
```
6161

62-
For more information on the Oracle JET CLI, refer to the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet1710&id=homepage).
62+
For more information on the Oracle JET CLI, refer to the [Oracle JET Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet1800&id=homepage).
6363

6464
## Contributing
6565
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).
@@ -69,5 +69,5 @@ This project is not accepting external contributions at this time. For bugs or e
6969
Please consult the [security guide](./SECURITY.md) for our responsible security vulnerability disclosure process
7070

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

RELEASENOTES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
## Release Notes for ojet-cli ##
22

3-
### 17.1.0
3+
### 18.0.0
44

55
* node-sass updated to 9.0.0
6+
* Building applications where npm dependencies are hoisted to any level of parent directory is now supported (monorepo directory structure)
7+
* Remove alta based theme creation
8+
* Install 'sass' instead of 'node-sass' for theme building. Use 'node-sass' only if 'sass' is not present
9+
* Introduced a new flag enableDocGen in oraclejetconfig.json to control API documentation generation. Running ojet add docgen will add this flag and set it to true, allowing API documentation to be generated. Setting enableDocGen to false will disable API documentation generation.
10+
* Added a new entry for jsdocLibraries in oraclejetconfig.json to facilitate maintenance of packages required for API documentation generation.
11+
* Update typescript to 5.7.2
612

713
### 17.0.0
814

common/component.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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
@@ -120,6 +120,9 @@ module.exports = {
120120
if (componentName === undefined || componentName === null) {
121121
errorMessage = 'Invalid component name: must not be null or undefined.';
122122
utils.log.error(errorMessage);
123+
} else if (_isVComponent(generator) && !utils.loadToolingUtil().isValidName(componentName)) {
124+
errorMessage = 'Invalid component name: the second segment of the vcomponent name must not start with a digit.';
125+
utils.log.error(errorMessage);
123126
} else if (!pack && _isResourceComponent(generator)) {
124127
errorMessage = 'Cannot create resource component: please re-run the command with --pack and provide an existing JET pack';
125128
utils.log.error(errorMessage);

common/hookRunner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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

common/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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

common/messages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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

common/restore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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

common/template/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2024, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2025, 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

0 commit comments

Comments
 (0)