@meetelise/chat 1.4.2 → 1.4.3

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.
@@ -17,7 +17,6 @@ jobs:
17
17
  with:
18
18
  cache: npm
19
19
  - run: npm ci
20
- - run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
21
20
  lint:
22
21
  runs-on: ubuntu-latest
23
22
  steps:
@@ -13,7 +13,6 @@ jobs:
13
13
  with:
14
14
  cache: npm
15
15
  - run: npm ci
16
- - run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
17
16
  - run: npm run lint -- --max-warnings 0
18
17
  - run: npm test -- --coverage
19
18
  - run: npx semantic-release
package/.husky/commit-msg CHANGED
@@ -1,4 +1,2 @@
1
1
  #!/bin/sh
2
2
  . "$(dirname "$0")/_/husky.sh"
3
-
4
- npx --no-install commitlint --edit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetelise/chat",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "public/dist/bundle.js",
@@ -27,8 +27,6 @@
27
27
  },
28
28
  "homepage": "https://github.com/MeetElise/chat-ui#readme",
29
29
  "devDependencies": {
30
- "@commitlint/cli": "^13.2.0",
31
- "@commitlint/config-conventional": "^13.2.0",
32
30
  "@esm-bundle/chai": "^4.3.4-fix.0",
33
31
  "@rollup/plugin-replace": "^3.0.1",
34
32
  "@types/lodash": "^4.14.178",
@@ -38,11 +36,8 @@
38
36
  "@types/uuid": "^8.3.1",
39
37
  "@typescript-eslint/eslint-plugin": "^4.31.2",
40
38
  "@typescript-eslint/parser": "^4.31.2",
41
- "@web/dev-server": "^0.1.29",
42
- "@web/dev-server-esbuild": "^0.2.14",
43
- "@web/dev-server-rollup": "^0.3.14",
39
+ "@web/dev-server-esbuild": "^0.2.16",
44
40
  "@web/test-runner": "^0.13.17",
45
- "commitizen": "^4.2.4",
46
41
  "css-loader": "^6.5.1",
47
42
  "css-modules-typescript-loader": "^4.0.1",
48
43
  "cz-conventional-changelog": "^3.3.0",
@@ -81,16 +76,5 @@
81
76
  "branches": [
82
77
  "main"
83
78
  ]
84
- },
85
- "config": {
86
- "commitizen": {
87
- "path": "./node_modules/cz-conventional-changelog",
88
- "defaultScope": "chat"
89
- }
90
- },
91
- "commitlint": {
92
- "extends": [
93
- "@commitlint/config-conventional"
94
- ]
95
79
  }
96
80
  }