analog-clock-components 0.2.78 → 0.2.81

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 (1) hide show
  1. package/package.json +18 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analog-clock-components",
3
- "version": "0.2.78",
3
+ "version": "0.2.81",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -14,25 +14,28 @@
14
14
  "dist/",
15
15
  "loader/"
16
16
  ],
17
- "scripts": {
18
- "build": "stencil build --docs",
19
- "start": "stencil build --dev --watch --serve",
20
- "generate": "stencil generate",
21
- "predeploy": "yarn build",
22
- "deploy": "yarn publish --patch",
23
- "spell": "cspell 'src/**/*.{ts,tsx,html,css,md}'",
24
- "cc": "prettier --check src",
25
- "format": "prettier --write src"
26
- },
27
17
  "dependencies": {
28
18
  "@stencil/core": "4.41.3"
29
19
  },
30
20
  "license": "MIT",
31
21
  "devDependencies": {
32
- "cspell": "9.6.0",
22
+ "bumpp": "10.4.0",
23
+ "cspell": "9.6.2",
33
24
  "eslint": "9.39.2",
25
+ "only-allow": "1.2.2",
34
26
  "prettier": "3.8.1",
35
- "typescript": "5.9.3"
27
+ "typescript": "5.9.3",
28
+ "yoctocolors": "2.1.2"
36
29
  },
37
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
38
- }
30
+ "scripts": {
31
+ "bump": "bumpp patch --commit --tag --push --yes",
32
+ "release": "pnpm bump && pnpm build && pnpm publish",
33
+ "preinstall": "npx only-allow pnpm",
34
+ "build": "stencil build --docs",
35
+ "start": "stencil build --dev --watch --serve",
36
+ "generate": "stencil generate",
37
+ "spell": "cspell 'src/**/*.{ts,tsx,html,css,md}'",
38
+ "cc": "prettier --check src",
39
+ "format": "prettier --write src"
40
+ }
41
+ }