@ui5/create-webcomponents-package
Advanced tools
Comparing version 0.0.0-701b14e36 to 0.0.0-7e7d9ea6f
@@ -6,2 +6,18 @@ # Change Log | ||
# [1.5.0](https://github.com/SAP/ui5-webcomponents/compare/v1.4.0...v1.5.0) (2022-07-03) | ||
**Note:** Version bump only for package @ui5/create-webcomponents-package | ||
# [1.4.0](https://github.com/SAP/ui5-webcomponents/compare/v1.3.1...v1.4.0) (2022-05-25) | ||
**Note:** Version bump only for package @ui5/create-webcomponents-package | ||
## [1.3.1](https://github.com/SAP/ui5-webcomponents/compare/v1.3.0...v1.3.1) (2022-04-27) | ||
@@ -8,0 +24,0 @@ |
@@ -9,2 +9,4 @@ #!/usr/bin/env node | ||
const version = JSON.parse(fs.readFileSync(path.join(__dirname, "package.json"))).version; | ||
// from where all the files will be copied | ||
@@ -119,3 +121,2 @@ const TEMPLATE_DIR = path.join(`${__dirname}`, `template/`); | ||
"watch": "wc-dev watch", | ||
"serve": "wc-dev serve", | ||
"build": "wc-dev build", | ||
@@ -135,7 +136,7 @@ "test": "wc-dev test", | ||
"dependencies": { | ||
"@ui5/webcomponents-base": "1.1.1", | ||
"@ui5/webcomponents-theming": "1.1.1", | ||
"@ui5/webcomponents-base": version, | ||
"@ui5/webcomponents-theming": version, | ||
}, | ||
"devDependencies": { | ||
"@ui5/webcomponents-tools": "1.1.1", | ||
"@ui5/webcomponents-tools": version, | ||
"chromedriver": "*", | ||
@@ -142,0 +143,0 @@ }, |
{ | ||
"name": "@ui5/create-webcomponents-package", | ||
"version": "0.0.0-701b14e36", | ||
"version": "0.0.0-7e7d9ea6f", | ||
"description": "UI5 Web Components: create package", | ||
@@ -5,0 +5,0 @@ "author": "SAP SE (https://www.sap.com)", |
@@ -1,6 +0,5 @@ | ||
![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/master/docs/images/UI5_logo_wide.png) | ||
![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/main/docs/images/UI5_logo_wide.png) | ||
# UI5 Web Components - Create Package | ||
[![Travis CI Build Status](https://travis-ci.org/SAP/ui5-webcomponents.svg?branch=master)](https://travis-ci.org/SAP/ui5-webcomponents) | ||
[![npm Package Version](https://badge.fury.io/js/%40ui5%2Fwebcomponents.svg)](https://www.npmjs.com/package/@ui5/webcomponents) | ||
@@ -26,3 +25,3 @@ | ||
## Resources | ||
- [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/master/README.md) | ||
- [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/main/README.md) | ||
- [UI5 Web Components - Home Page](https://sap.github.io/ui5-webcomponents) | ||
@@ -32,9 +31,9 @@ - [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/) | ||
## Support | ||
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/). | ||
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/). | ||
## Contribute | ||
Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/docs/6-contributing/02-conventions-and-guidelines.md). | ||
Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md). | ||
## License | ||
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. | ||
This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/master/LICENSE.txt) file. | ||
This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/main/LICENSE.txt) file. |
@@ -13,2 +13,5 @@ import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js"; | ||
/** | ||
* @public | ||
*/ | ||
const metadata = { | ||
@@ -24,2 +27,15 @@ tag: "INIT_PACKAGE_VAR_TAG", | ||
/** | ||
* @class | ||
* | ||
* <h3 class="comment-api-title">Overview</h3> | ||
* | ||
* The <code>INIT_PACKAGE_VAR_TAG</code> component is a demo component that displays some text. | ||
* | ||
* @constructor | ||
* @alias demo.components.INIT_PACKAGE_VAR_CLASS_NAME | ||
* @extends UI5Element | ||
* @tagname INIT_PACKAGE_VAR_TAG | ||
* @public | ||
*/ | ||
class INIT_PACKAGE_VAR_CLASS_NAME extends UI5Element { | ||
@@ -26,0 +42,0 @@ static get metadata() { |
const assert = require("assert"); | ||
describe("INIT_PACKAGE_VAR_TAG rendering", async () => { | ||
await browser.url("http://localhost:INIT_PACKAGE_VAR_PORT/test-resources/pages/index.html"); | ||
await browser.url("test/pages/index.html"); | ||
@@ -6,0 +6,0 @@ it("tests if web component is correctly rendered", async () => { |
Sorry, the diff of this file is not supported yet
15155
283
28
38