@citizenplane/pimp 11.0.1 → 11.0.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8080",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -12,7 +12,6 @@
12
12
  "format": "prettier . --write",
13
13
  "test": "jest tests",
14
14
  "commitlint": "commitlint --edit",
15
- "commit": "cz",
16
15
  "prepare": "husky"
17
16
  },
18
17
  "type": "module",
@@ -46,8 +45,7 @@
46
45
  },
47
46
  "devDependencies": {
48
47
  "@babel/core": "^7.28.6",
49
- "@commitlint/cli": "^20.3.1",
50
- "@commitlint/config-conventional": "^20.3.1",
48
+ "@commitlint/cli": "20.4.2",
51
49
  "@eslint/eslintrc": "^3.3.3",
52
50
  "@eslint/js": "^9.39.2",
53
51
  "@storybook/addon-onboarding": "^9.1.17",
@@ -67,8 +65,7 @@
67
65
  "@vue/test-utils": "^2.4.6",
68
66
  "@vue/vue3-jest": "^29.2.6",
69
67
  "babel-core": "^7.0.0-bridge.0",
70
- "commitizen": "^4.3.1",
71
- "cz-conventional-changelog": "^3.3.0",
68
+ "commitlint-config-gitmoji": "2.3.1",
72
69
  "eslint": "^9.39.2",
73
70
  "eslint-config-prettier": "^10.1.8",
74
71
  "eslint-plugin-perfectionist": "^5.4.0",
@@ -79,7 +76,7 @@
79
76
  "husky": "^9.1.7",
80
77
  "jest": "~29.7.0",
81
78
  "jest-environment-jsdom": "^30.2.0",
82
- "lint-staged": "^16.2.7",
79
+ "lint-staged": "^16.3.1",
83
80
  "playwright": "^1.58.0",
84
81
  "prettier": "^3.6.2",
85
82
  "sass": "~1.97.3",
@@ -95,12 +92,8 @@
95
92
  "plugin:storybook/recommended"
96
93
  ]
97
94
  },
98
- "config": {
99
- "commitizen": {
100
- "path": "cz-conventional-changelog",
101
- "disableScopeLowerCase": true,
102
- "disableSubjectLowerCase": true,
103
- "defaultScope": "pimp"
104
- }
95
+ "engines": {
96
+ "npm": "11",
97
+ "node": "24"
105
98
  }
106
99
  }
@@ -245,6 +245,10 @@ $dialog-breakpoint: 550px;
245
245
  align-items: center;
246
246
  justify-content: space-between;
247
247
 
248
+ &:empty {
249
+ display: none;
250
+ }
251
+
248
252
  &:not(:empty) {
249
253
  border-top: 1px solid var(--cp-border-soft);
250
254
  }
@@ -1,27 +0,0 @@
1
- export default {
2
- extends: ['@commitlint/config-conventional'],
3
- rules: {
4
- // Limit subject length to 84 characters as requested
5
- 'subject-max-length': [1, 'always', 84],
6
- // Ensure subject is in lowercase
7
- 'subject-case': [0, 'always', 'lower-case'],
8
- // Allowed types according to conventional commits
9
- 'type-enum': [
10
- 2,
11
- 'always',
12
- [
13
- 'feat', // new feature
14
- 'fix', // bug fix
15
- 'docs', // documentation
16
- 'style', // formatting, missing semicolons, etc.
17
- 'refactor', // code refactoring
18
- 'perf', // performance improvements
19
- 'test', // adding tests
20
- 'chore', // maintenance tasks
21
- 'ci', // continuous integration
22
- 'build', // build system
23
- 'revert', // revert commit
24
- ],
25
- ],
26
- },
27
- }