Skip to content

Commit

Permalink
Update README.md (#279)
Browse files Browse the repository at this point in the history
* Update README.md

* Update README.md

* Update README.md

* Update webpack.config.js
  • Loading branch information
slavik-lvovsky authored May 13, 2020
1 parent 7646295 commit c936efd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,11 @@ To develop and contribute you can build & install each package seperatly. Instru
* [Build & install the backend](backend/README.md)
* [Build & install the yeoman example generator](generator-foodq/README.md)

## Known Issues
* inquirer.js plugins not supported.
* transformer function not supported.

## How to obtain support
To get more help, support and information please open a github [issue](https://github.com/SAP/yeoman-ui/issues).

## Contributing
Contributing information can be found in the [CONTRIBUTING.md](CONTRIBUTING.md) file.

## TODO
* support extensible question type custom user interfaces for complex operations (e.g. choose odata source)
* support inquirer plugins (e.g. date/time)


## License
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the [LICENSE]() file.
Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the [LICENSE]() file.
5 changes: 3 additions & 2 deletions backend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ const config = {
plugins: [
new CopyPlugin([
{ from: '../frontend/dist/', to: 'media/', force: true },
{ from: '../LICENSE', to: '../LICENSE', toType: "file", force: true }
{ from: '../LICENSE', to: '../LICENSE', toType: "file", force: true },
{ from: '../README.md', to: '../README.md', toType: "file", force: true }
])
]
};
module.exports = config;
module.exports = config;

0 comments on commit c936efd

Please sign in to comment.