@flowscripter/template-bun-library 1.0.4 → 1.0.5
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/.github/workflows/check-bun-dependencies.yml +1 -1
- package/README.md +4 -3
- package/bun.lock +4 -4
- package/package.json +2 -2
- package/.releaserc +0 -13
package/README.md
CHANGED
|
@@ -30,15 +30,16 @@ world();
|
|
|
30
30
|
|
|
31
31
|
## Development
|
|
32
32
|
|
|
33
|
-
Test:
|
|
33
|
+
Test:
|
|
34
34
|
|
|
35
35
|
`bun test`
|
|
36
36
|
|
|
37
|
-
**NOTE**: The following tasks use Deno as it excels at these and Bun does not
|
|
37
|
+
**NOTE**: The following tasks use Deno as it excels at these and Bun does not
|
|
38
|
+
currently provide such functionality:
|
|
38
39
|
|
|
39
40
|
Format:
|
|
40
41
|
|
|
41
|
-
`deno fmt
|
|
42
|
+
`deno fmt`
|
|
42
43
|
|
|
43
44
|
Lint:
|
|
44
45
|
|
package/bun.lock
CHANGED
|
@@ -4,21 +4,21 @@
|
|
|
4
4
|
"": {
|
|
5
5
|
"name": "template-bun-library",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@types/bun": "
|
|
7
|
+
"@types/bun": "^1.2.3",
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"typescript": "
|
|
10
|
+
"typescript": "^5.7.3",
|
|
11
11
|
},
|
|
12
12
|
},
|
|
13
13
|
},
|
|
14
14
|
"packages": {
|
|
15
|
-
"@types/bun": ["@types/bun@1.2.
|
|
15
|
+
"@types/bun": ["@types/bun@1.2.3", "", { "dependencies": { "bun-types": "1.2.3" } }, "sha512-054h79ipETRfjtsCW9qJK8Ipof67Pw9bodFWmkfkaUaRiIQ1dIV2VTlheshlBx3mpKr0KeK8VqnMMCtgN9rQtw=="],
|
|
16
16
|
|
|
17
17
|
"@types/node": ["@types/node@22.13.1", "", { "dependencies": { "undici-types": "~6.20.0" } }, "sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew=="],
|
|
18
18
|
|
|
19
19
|
"@types/ws": ["@types/ws@8.5.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw=="],
|
|
20
20
|
|
|
21
|
-
"bun-types": ["bun-types@1.2.
|
|
21
|
+
"bun-types": ["bun-types@1.2.3", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-P7AeyTseLKAvgaZqQrvp3RqFM3yN9PlcLuSTe7SoJOfZkER73mLdT2vEQi8U64S1YvM/ldcNiQjn0Sn7H9lGgg=="],
|
|
22
22
|
|
|
23
23
|
"typescript": ["typescript@5.7.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw=="],
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"name": "@flowscripter/template-bun-library",
|
|
3
3
|
"module": "index.ts",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@types/bun": "^1.2.
|
|
10
|
+
"@types/bun": "^1.2.3"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"typescript": "^5.7.3"
|
package/.releaserc
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
branches:
|
|
3
|
-
- main
|
|
4
|
-
plugins:
|
|
5
|
-
- - "@semantic-release/commit-analyzer"
|
|
6
|
-
- preset: conventionalcommits
|
|
7
|
-
- - "@semantic-release/release-notes-generator"
|
|
8
|
-
- preset: conventionalcommits
|
|
9
|
-
- - "@semantic-release/github"
|
|
10
|
-
- - "@semantic-release/npm"
|
|
11
|
-
- - "@semantic-release/git"
|
|
12
|
-
- assets:
|
|
13
|
-
- package.json
|