Skip to content

Commit

Permalink
Release 12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benm071 committed Feb 11, 2022
1 parent bca8c92 commit b04eb15
Show file tree
Hide file tree
Showing 189 changed files with 4,650 additions and 2,308 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to ojet-cli

*Copyright (c) 2014, 2021 Oracle and/or its affiliates
*Copyright (c) 2014, 2022 Oracle and/or its affiliates
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/*

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ojet-cli

Copyright (c) 2021 Oracle and/or its affiliates.
Copyright (c) 2022 Oracle and/or its affiliates.

Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @oracle/ojet-cli 11.1.0
# @oracle/ojet-cli 12.0.0

## About the module
This module contains a command line interface for Oracle JET web and hybrid mobile application development.
Expand Down Expand Up @@ -64,11 +64,11 @@ Or view help on adding a plugin:
ojet help add plugin
```

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

## [Contributing](https://github.com/oracle/ojet-cli/blob/master/CONTRIBUTING.md)
Oracle JET is an open source project. Pull Requests are currently not being accepted. See [CONTRIBUTING](https://github.com/oracle/ojet-cli/blob/master/CONTRIBUTING.md) for details.

## [License](https://github.com/oracle/ojet-cli/blob/master/LICENSE)
Copyright (c) 2021 Oracle and/or its affiliates and released under the
Copyright (c) 2022 Oracle and/or its affiliates and released under the
[Universal Permissive License (UPL)](https://oss.oracle.com/licenses/upl/), Version 1.0
11 changes: 11 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## Release Notes for ojet-cli ##

### 12.0.0

* Add optional 'stripList' property to oraclejetconfig.json to allow providing the list of files/directories to delete instead of using .gitignore
* Add optional '--ci' flag to restore to use npm ci instead of the default npm install
* The third party library 'svgo' by oraclejet-tooling was updated. If you run into problems during an 'ojet build' surrounding 'svgo', ensure that you have version svgo 2.7.0+ installed in your application's node_modules. If in the rare case you have an svgMin section in your oraclejetconfig.json, its plugin section may need to be updated per the svgo 2.7.0 documentation
* Custom hooks have been added to run before/after package creation
* Webpack support has been expanded to both debug and release builds
* Added --installer option/installer property for oraclejetconfig.json
* Updated default typescript version to 4.5.4
* Remove obsolete "generatorVersion" from oraclejetconfig.json

### 11.1.0

* ojs/ojcss is supported as a name for the ojcss plugin
Expand Down
2 changes: 1 addition & 1 deletion bin/ojet
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

const argv = require('minimist')(process.argv.slice(2));
const tasks = require('../lib/tasks');
const utils = require('../lib/utils');
const utils = require('../lib/util/utils');
// Extract commands
const commands = [...argv._];
// Delete commands leaving only options
Expand Down
Loading

0 comments on commit b04eb15

Please sign in to comment.