github-archiver 1.1.0 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
- ## [1.0.8](https://github.com/mynameistito/github-archiver/compare/v1.0.7...v1.0.8) (2026-01-11)
1
+ ## [1.1.1](https://github.com/mynameistito/github-archiver/compare/v1.1.0...v1.1.1) (2026-01-12)
2
+
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7df5b1a`](https://github.com/mynameistito/github-archiver/commit/7df5b1a094c56380648da0c82d69dddbbf776468) Thanks [@mynameistito](https://github.com/mynameistito)! - Add explicit git tagging to release workflow and synchronize changelog
8
+
9
+ - Implement automatic version tag creation (v{version}) after successful npm publish
10
+ - Create and update 'latest' tag pointing to the most recent release
11
+ - Push both version and latest tags to remote for git history synchronization
12
+ - Ensure git tags are immediately available in the repository
13
+ - Update CHANGELOG with proper semantic versioning headers and GitHub compare links
14
+ - Improves consistency between git tags, npm releases, and GitHub releases
2
15
 
3
- ## 1.1.0
16
+ ### Patch Changes
17
+
18
+ - [`c91ebe7`](https://github.com/mynameistito/github-archiver/commit/c91ebe75bed07bb4226aff39f8b8841285c89573) Thanks [@mynameistito](https://github.com/mynameistito)! - Migrate from Vitest to Bun native testing ecosystem and replace @types/node with @types/bun
19
+
20
+ - Switch test runner from Vitest to Bun's native Jest-compatible test runner
21
+ - Remove Vitest dependency and update test scripts to use `bun test`
22
+ - Create bunfig.toml with comprehensive test configuration (coverage, timeouts, environment variables)
23
+ - Migrate all test files (2 files, 34 tests) to use `bun:test` imports instead of Vitest
24
+ - Replace @types/node with @types/bun for better Bun environment compatibility
25
+ - All 34 tests pass with 94.39% line coverage
26
+ - No breaking changes - all Node.js APIs work seamlessly through Bun's Node.js compatibility layer
27
+
28
+ ## [1.1.0](https://github.com/mynameistito/github-archiver/compare/v1.0.9...v1.1.0) (2026-01-12)
4
29
 
5
30
  ### Minor Changes
6
31
 
@@ -19,7 +44,7 @@
19
44
  - Refactor summary box formatting with dynamic padding that accounts for emoji character widths
20
45
  - Ensure all numeric values in summary box are properly right-aligned
21
46
 
22
- ## 1.0.9
47
+ ## [1.0.9](https://github.com/mynameistito/github-archiver/compare/v1.0.8...v1.0.9) (2026-01-12)
23
48
 
24
49
  ### Patch Changes
25
50
 
@@ -32,6 +57,8 @@
32
57
  - Update Node requirement to 22+ (aligns with actual dependencies)
33
58
  - Update CI/CD workflows to use bun exclusively
34
59
 
60
+ ## [1.0.8](https://github.com/mynameistito/github-archiver/compare/v1.0.7...v1.0.8) (2026-01-11)
61
+
35
62
  ## [1.0.7](https://github.com/mynameistito/github-archiver/compare/v1.0.6...v1.0.7) (2026-01-11)
36
63
 
37
64
  ### Bug Fixes
package/bunfig.toml ADDED
@@ -0,0 +1,26 @@
1
+ [install]
2
+ # Install settings inherited by tests
3
+ registry = "https://registry.npmjs.org/"
4
+
5
+ [env]
6
+ # Environment variables for tests
7
+ NODE_ENV = "test"
8
+
9
+ [test]
10
+ # Test discovery
11
+ root = "src"
12
+
13
+ # Execution settings
14
+ timeout = 10000
15
+
16
+ # Coverage configuration
17
+ coverage = true
18
+ coverageReporter = ["text", "lcov"]
19
+ coverageDir = "./coverage"
20
+ coverageSkipTestFiles = true
21
+
22
+ # Coverage path ignore patterns
23
+ coveragePathIgnorePatterns = [
24
+ "**/*.test.ts",
25
+ "**/*.spec.ts"
26
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-archiver",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Archive GitHub repositories via CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,8 +19,8 @@
19
19
  "fix": "ultracite fix",
20
20
  "typecheck": "tsc --noEmit",
21
21
  "tsc": "tsc --noEmit",
22
- "test": "vitest",
23
- "test:coverage": "vitest --coverage",
22
+ "test": "bun test ./tests",
23
+ "test:coverage": "bun test --coverage ./tests",
24
24
  "changeset": "changeset",
25
25
  "changeset:add": "changeset add",
26
26
  "changeset:version": "changeset version",
@@ -39,12 +39,11 @@
39
39
  "@changesets/changelog-github": "^0.5.2",
40
40
  "@changesets/cli": "^2.29.8",
41
41
  "@changesets/get-github-info": "^0.7.0",
42
- "@types/node": "^25.0.6",
42
+ "@types/bun": "^1.3.5",
43
43
  "esbuild": "^0.27.2",
44
44
  "tsx": "^4.21.0",
45
45
  "typescript": "^5.9.3",
46
- "ultracite": "^7.0.11",
47
- "vitest": "^4.0.16"
46
+ "ultracite": "^7.0.11"
48
47
  },
49
48
  "keywords": [
50
49
  "github",