@zweer/dev 2.0.0 → 2.1.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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Niccolò Olivieri Achille
3
+ Copyright (c) 2026 Niccolò Olivieri Achille (Zweer)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -82,7 +82,7 @@ The `zweer-setup` agent generates `.kiro/` config for any project:
82
82
 
83
83
  | Tier | Workflows | When |
84
84
  |------|-----------|------|
85
- | Base | ci, pr, security, dependabot-auto-merge | Always |
85
+ | Base | ci, pr, security, dependabot-auto-merge, dependabot-post-update | Always |
86
86
  | Library | npm release | npm packages |
87
87
  | Docs | VitePress deploy | Projects with docs/ |
88
88
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zweer/dev",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Shared configurations, golden configs & Kiro AI templates for software projects",
5
5
  "keywords": [
6
6
  "cli",
@@ -1,4 +1,4 @@
1
- name: Dependabot Lockfile Fix
1
+ name: Dependabot Post-Update
2
2
 
3
3
  on:
4
4
  pull_request:
@@ -10,7 +10,7 @@ permissions:
10
10
  contents: write
11
11
 
12
12
  jobs:
13
- fix-lockfile:
13
+ post-update:
14
14
  if: github.actor == 'dependabot[bot]'
15
15
  runs-on: ubuntu-latest
16
16
  steps:
@@ -21,14 +21,18 @@ jobs:
21
21
 
22
22
  - uses: actions/setup-node@v6
23
23
  with:
24
- node-version: lts/*
24
+ node-version: 20
25
25
 
26
26
  - run: npm i --package-lock-only
27
27
 
28
- - name: Commit updated lockfile
28
+ - run: npx @biomejs/biome migrate --write
29
+
30
+ - run: npx sort-package-json "package.json" "packages/*/package.json"
31
+
32
+ - name: Commit changes
29
33
  run: |
30
34
  git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
31
35
  git config user.name "github-actions[bot]"
32
- git add package-lock.json
33
- git diff --cached --quiet || git commit -m "fix: :lock: regenerate lockfile with Node 20"
36
+ git add -A
37
+ git diff --cached --quiet || git commit -m "chore: :wrench: post-update fixes (lockfile, biome migrate, sort)"
34
38
  git push