@flowscripter/template-bun-executable 1.1.14 → 1.1.16

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.
Files changed (3) hide show
  1. package/README.md +9 -15
  2. package/bun.lock +4 -4
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![version](https://img.shields.io/github/v/release/flowscripter/template-bun-executable?sort=semver)](https://github.com/flowscripter/template-bun-executable/releases)
4
4
  [![build](https://img.shields.io/github/actions/workflow/status/flowscripter/template-bun-executable/release-bun-executable.yml)](https://github.com/flowscripter/template-bun-executable/actions/workflows/release-bun-executable.yml)
5
- [![coverage](https://codecov.io/gh/flowscripter/template-bun-executable/graph/badge.svg?token=uWK0oWsBjr)](https://codecov.io/gh/flowscripter/template-bun-executable)
5
+ [![coverage](https://codecov.io/gh/flowscripter/template-bun-executable/graph/badge.svg?token=dxU2NQB2DM)](https://codecov.io/gh/flowscripter/template-bun-executable)
6
6
  [![docs](https://img.shields.io/badge/docs-API-blue)](https://flowscripter.github.io/template-bun-executable/index.html)
7
7
  [![license: MIT](https://img.shields.io/github/license/flowscripter/template-bun-executable)](https://github.com/flowscripter/template-bun-executable/blob/main/LICENSE)
8
8
 
@@ -15,20 +15,6 @@ Create a new Bun project using this as a template:
15
15
 
16
16
  `bun create @flowscripter/template-bun-executable`
17
17
 
18
- ## Bun Module Usage
19
-
20
- Add the module:
21
-
22
- `bun add @flowscripter/template-bun-executable`
23
-
24
- Use the module:
25
-
26
- ```typescript
27
- import { world } from "@flowscripter/template-bun-executable";
28
-
29
- world();
30
- ```
31
-
32
18
  ## Binary Executable Usage
33
19
 
34
20
  **NOTE**: The binaries are 10's of megabytes in size as the entire Bun runtime
@@ -64,10 +50,18 @@ Refer to [functional_tests/README.md](functional_tests/README.md)
64
50
 
65
51
  ## Development
66
52
 
53
+ Install dependencies:
54
+
55
+ `bun install`
56
+
67
57
  Test:
68
58
 
69
59
  `bun test`
70
60
 
61
+ Run:
62
+
63
+ `bun run index.ts`
64
+
71
65
  Compile binary:
72
66
 
73
67
  `bun build index.ts --compile --outfile /tmp/template-bun-executable`
package/bun.lock CHANGED
@@ -4,8 +4,8 @@
4
4
  "": {
5
5
  "name": "@flowscripter/template-bun-executable",
6
6
  "dependencies": {
7
- "@flowscripter/template-bun-library": "1.0.10",
8
- "@flowscripter/template-bun-rust-library": "1.0.17",
7
+ "@flowscripter/template-bun-library": "1.0.12",
8
+ "@flowscripter/template-bun-rust-library": "1.0.19",
9
9
  },
10
10
  "devDependencies": {
11
11
  "@types/bun": "^1.2.4",
@@ -16,9 +16,9 @@
16
16
  },
17
17
  },
18
18
  "packages": {
19
- "@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.10", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-2JZ9AnB0/uRMbAs4DG94gfBornbsSe1KwjFaqYxWrBzX5p5KIUFwjjSsGNxjxEqjmJzk9T41ugX+AgROwPnSvg=="],
19
+ "@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.12", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-WwIDvAFdszwW1Q4Ahckh3jMFRPxdl8aS3Ok2WblUCcxw6qINpZSyY3HufNXzGT6cZaHhKjG1qpo/RdnFuT74lw=="],
20
20
 
21
- "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.17", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-izfWpiPYQUxvFRJEcSHAyDSA4XfsjE1xrSZVCCj28sYtm3AchFnzaHkoXY8Rp3lrM09sceI61mKqIlvCFRsI6Q=="],
21
+ "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.19", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-gjnY3KYLJP/lB3YvUA5WaS5xqF0UFm/EacT1aO11oF1GD4L1adKWlKv92uxh8F5Uf/5LqVLq8Bmwunjaw4VSpg=="],
22
22
 
23
23
  "@types/bun": ["@types/bun@1.2.4", "", { "dependencies": { "bun-types": "1.2.4" } }, "sha512-QtuV5OMR8/rdKJs213iwXDpfVvnskPXY/S0ZiFbsTjQZycuqPbMW8Gf/XhLfwE5njW8sxI2WjISURXPlHypMFA=="],
24
24
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@flowscripter/template-bun-executable",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "1.1.14",
5
+ "version": "1.1.16",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
@@ -13,7 +13,7 @@
13
13
  "typescript": "^5.8.2"
14
14
  },
15
15
  "dependencies": {
16
- "@flowscripter/template-bun-library": "1.0.10",
17
- "@flowscripter/template-bun-rust-library": "1.0.17"
16
+ "@flowscripter/template-bun-library": "1.0.12",
17
+ "@flowscripter/template-bun-rust-library": "1.0.19"
18
18
  }
19
19
  }