@flowscripter/template-bun-library 1.0.2 → 1.0.4

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.
@@ -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,7 +23,7 @@ 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
  ```
@@ -61,9 +61,9 @@ classDiagram
61
61
 
62
62
  ### API
63
63
 
64
- Link to auto-generated API docs for the library:
64
+ Link to auto-generated API docs:
65
65
 
66
- [API Documentation](https://jsr.io/@flowscripter/template-bun-library/doc)
66
+ [API Documentation](https://flowscripter.github.io/template-bun-library/index.html)
67
67
 
68
68
  ## License
69
69
 
package/bun.lock CHANGED
@@ -7,7 +7,7 @@
7
7
  "@types/bun": "latest",
8
8
  },
9
9
  "peerDependencies": {
10
- "typescript": "^5.0.0",
10
+ "typescript": "latest",
11
11
  },
12
12
  },
13
13
  },
package/package.json CHANGED
@@ -2,14 +2,14 @@
2
2
  "name": "@flowscripter/template-bun-library",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "1.0.2",
5
+ "version": "1.0.4",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "devDependencies": {
10
- "@types/bun": "latest"
10
+ "@types/bun": "^1.2.2"
11
11
  },
12
12
  "peerDependencies": {
13
- "typescript": "^5.0.0"
13
+ "typescript": "^5.7.3"
14
14
  }
15
15
  }
@@ -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