@flowscripter/template-bun-library 1.0.3 → 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/README.md
CHANGED
|
@@ -23,22 +23,23 @@ Add the module:
|
|
|
23
23
|
Use the module:
|
|
24
24
|
|
|
25
25
|
```typescript
|
|
26
|
-
import { world } from "@flowscripter/template-
|
|
26
|
+
import { world } from "@flowscripter/template-bun-library";
|
|
27
27
|
|
|
28
28
|
world();
|
|
29
29
|
```
|
|
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
|
|
|
@@ -61,9 +62,9 @@ classDiagram
|
|
|
61
62
|
|
|
62
63
|
### API
|
|
63
64
|
|
|
64
|
-
Link to auto-generated API docs
|
|
65
|
+
Link to auto-generated API docs:
|
|
65
66
|
|
|
66
|
-
[API Documentation](https://
|
|
67
|
+
[API Documentation](https://flowscripter.github.io/template-bun-library/index.html)
|
|
67
68
|
|
|
68
69
|
## License
|
|
69
70
|
|
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
|