@neovici/cosmoz-input 5.7.1 → 5.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +8 -21
package/README.md CHANGED
@@ -1,10 +1,9 @@
1
- cosmoz-input
2
- ==================
1
+ # cosmoz-input
3
2
 
4
3
  [![Build Status](https://github.com/Neovici/cosmoz-input/workflows/CI/badge.svg)](https://github.com/Neovici/cosmoz-input/actions?workflow=CI)
5
4
  [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/Neovici/cosmoz-input)
6
5
  [![Depfu](https://badges.depfu.com/badges/c887733c2e1b6c70285860279a80fa03/overview.svg)](https://depfu.com/github/Neovici/cosmoz-input?project_id=9639)
7
- [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
6
+ [![Changesets](https://img.shields.io/badge/Changesets-🦋%20changesets-268ADA.svg)](https://github.com/changesets/changesets)
8
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/56671dc0a46898d2f539/maintainability)](https://codeclimate.com/github/Neovici/cosmoz-input/maintainability)
9
8
  [![Test Coverage](https://api.codeclimate.com/v1/badges/56671dc0a46898d2f539/test_coverage)](https://codeclimate.com/github/Neovici/cosmoz-input/test_coverage)
10
9
 
@@ -17,12 +16,13 @@ cosmoz-input
17
16
  ### Installing
18
17
 
19
18
  Using npm:
19
+
20
20
  ```bash
21
21
  npm install --save @neovici/cosmoz-input
22
22
  ```
23
23
 
24
24
  ### Usage
25
25
 
26
- ``` javascript
27
- html`<cosmoz-input .value=${"value"} />`;
26
+ ```javascript
27
+ html`<cosmoz-input .value=${'value'} />`;
28
28
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cosmoz-input",
3
- "version": "5.7.1",
3
+ "version": "5.8.0",
4
4
  "description": "A input web component",
5
5
  "keywords": [
6
6
  "lit-html",
@@ -32,19 +32,8 @@
32
32
  "storybook:start": "storybook dev -p 8000",
33
33
  "storybook:build": "storybook build",
34
34
  "storybook:deploy": "storybook-to-ghpages",
35
- "storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent"
36
- },
37
- "release": {
38
- "plugins": [
39
- "@semantic-release/commit-analyzer",
40
- "@semantic-release/release-notes-generator",
41
- "@semantic-release/changelog",
42
- "@semantic-release/github",
43
- "@semantic-release/npm",
44
- "@semantic-release/git"
45
- ],
46
- "branch": "master",
47
- "preset": "conventionalcommits"
35
+ "storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent",
36
+ "changeset": "changeset"
48
37
  },
49
38
  "publishConfig": {
50
39
  "access": "public"
@@ -74,13 +63,11 @@
74
63
  "lit-html": "^2.0.0 || ^3.0.0"
75
64
  },
76
65
  "devDependencies": {
77
- "@commitlint/cli": "^20.0.0",
78
- "@commitlint/config-conventional": "^20.0.0",
66
+ "@commitlint/cli": "^21.0.0",
67
+ "@commitlint/config-conventional": "^21.0.1",
79
68
  "@neovici/cfg": "^2.8.0",
80
69
  "@neovici/testing": "^2.3.0",
81
70
  "@playwright/test": "^1.58.1",
82
- "@semantic-release/changelog": "^6.0.0",
83
- "@semantic-release/git": "^10.0.0",
84
71
  "@storybook/addon-docs": "^10.0.0",
85
72
  "@storybook/addon-vitest": "^10.2.4",
86
73
  "@storybook/web-components-vite": "^10.2.4",
@@ -90,10 +77,10 @@
90
77
  "http-server": "^14.1.1",
91
78
  "husky": "^9.1.7",
92
79
  "jsdom": "^29.0.0",
93
- "lint-staged": "^16.2.7",
94
- "semantic-release": "^25.0.2",
80
+ "lint-staged": "^17.0.7",
81
+ "@changesets/cli": "^2.28.1",
95
82
  "shadow-dom-testing-library": "^1.13.1",
96
- "sinon": "^21.0.0",
83
+ "sinon": "^22.0.0",
97
84
  "storybook": "^10.1.9",
98
85
  "vitest": "^4.0.18"
99
86
  }