github-archiver 1.1.0 → 1.1.1
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 +14 -0
- package/bunfig.toml +26 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
## [1.0.8](https://github.com/mynameistito/github-archiver/compare/v1.0.7...v1.0.8) (2026-01-11)
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`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
|
|
8
|
+
|
|
9
|
+
- Switch test runner from Vitest to Bun's native Jest-compatible test runner
|
|
10
|
+
- Remove Vitest dependency and update test scripts to use `bun test`
|
|
11
|
+
- Create bunfig.toml with comprehensive test configuration (coverage, timeouts, environment variables)
|
|
12
|
+
- Migrate all test files (2 files, 34 tests) to use `bun:test` imports instead of Vitest
|
|
13
|
+
- Replace @types/node with @types/bun for better Bun environment compatibility
|
|
14
|
+
- All 34 tests pass with 94.39% line coverage
|
|
15
|
+
- No breaking changes - all Node.js APIs work seamlessly through Bun's Node.js compatibility layer
|
|
16
|
+
|
|
3
17
|
## 1.1.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
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.
|
|
3
|
+
"version": "1.1.1",
|
|
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": "
|
|
23
|
-
"test: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/
|
|
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",
|