@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.
@@ -2,7 +2,7 @@ name: check-bun-dependencies
2
2
  on:
3
3
  workflow_dispatch:
4
4
  schedule:
5
- - cron: '0 0 * * *'
5
+ - cron: "0 0 * * *"
6
6
  jobs:
7
7
  call-check-bun-dependencies:
8
8
  uses: flowscripter/.github/.github/workflows/check-bun-dependencies.yml@v1
@@ -0,0 +1,8 @@
1
+ name: validate-bun-library-pr
2
+ on:
3
+ pull_request:
4
+ branches: [main]
5
+ jobs:
6
+ call-validate-bun-library-pr:
7
+ uses: flowscripter/.github/.github/workflows/validate-bun-library-pr.yml@v1
8
+ secrets: inherit
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-deno-library";
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 currently provide such functionality:
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 index.ts src/ tests`
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 for the library:
65
+ Link to auto-generated API docs:
65
66
 
66
- [API Documentation](https://jsr.io/@flowscripter/template-bun-library/doc)
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": "latest",
7
+ "@types/bun": "^1.2.3",
8
8
  },
9
9
  "peerDependencies": {
10
- "typescript": "latest",
10
+ "typescript": "^5.7.3",
11
11
  },
12
12
  },
13
13
  },
14
14
  "packages": {
15
- "@types/bun": ["@types/bun@1.2.2", "", { "dependencies": { "bun-types": "1.2.2" } }, "sha512-tr74gdku+AEDN5ergNiBnplr7hpDp3V1h7fqI2GcR/rsUaM39jpSeKH0TFibRvU0KwniRx5POgaYnaXbk0hU+w=="],
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.2", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-RCbMH5elr9gjgDGDhkTTugA21XtJAy/9jkKe/G3WR2q17VPGhcquf9Sir6uay9iW+7P/BV0CAHA1XlHXMAVKHg=="],
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.3",
5
+ "version": "1.0.5",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "devDependencies": {
10
- "@types/bun": "^1.2.2"
10
+ "@types/bun": "^1.2.3"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "typescript": "^5.7.3"
@@ -1,8 +0,0 @@
1
- name: validate-bun-pr
2
- on:
3
- pull_request:
4
- branches: [main]
5
- jobs:
6
- call-validate-bun-pr:
7
- uses: flowscripter/.github/.github/workflows/validate-bun-pr.yml@v1
8
- secrets: inherit
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