@flowscripter/template-bun-executable 1.1.21 → 1.1.23

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.
@@ -3,6 +3,9 @@ on:
3
3
  workflow_dispatch:
4
4
  schedule:
5
5
  - cron: "0 0 * * *"
6
+ permissions:
7
+ contents: read
8
+ pull-requests: write
6
9
  jobs:
7
10
  call-check-bun-dependencies:
8
11
  uses: flowscripter/.github/.github/workflows/check-bun-dependencies.yml@v1
@@ -5,6 +5,8 @@ on:
5
5
  - opened
6
6
  - edited
7
7
  - synchronize
8
+ permissions:
9
+ contents: read
8
10
  jobs:
9
11
  call-lint-pr-message:
10
12
  uses: flowscripter/.github/.github/workflows/lint-pr-message.yml@v1
@@ -2,6 +2,12 @@ name: release-bun-executable
2
2
  on:
3
3
  push:
4
4
  branches: [main]
5
+ permissions:
6
+ contents: write
7
+ issues: write
8
+ pull-requests: write
9
+ id-token: write
10
+ pages: write
5
11
  jobs:
6
12
  call-release-bun-executable:
7
13
  uses: flowscripter/.github/.github/workflows/release-bun-executable.yml@v1
@@ -2,6 +2,8 @@ name: validate-bun-executable-pr
2
2
  on:
3
3
  pull_request:
4
4
  branches: [main]
5
+ permissions:
6
+ contents: read
5
7
  jobs:
6
8
  call-validate-bun-executable-pr:
7
9
  uses: flowscripter/.github/.github/workflows/validate-bun-executable-pr.yml@v1
package/README.md CHANGED
@@ -34,7 +34,7 @@ In a terminal:
34
34
 
35
35
  #### Windows
36
36
 
37
- In PowerShell:
37
+ In PowerShell: **(NOTE: This does not currently work...)**
38
38
 
39
39
  `curl -fsSL https://raw.githubusercontent.com/flowscripter/template-bun-executable/main/script/install.ps1 | powershell`
40
40
 
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.17",
8
- "@flowscripter/template-bun-rust-library": "1.0.24",
7
+ "@flowscripter/template-bun-library": "1.0.18",
8
+ "@flowscripter/template-bun-rust-library": "1.0.25",
9
9
  },
10
10
  "devDependencies": {
11
11
  "@types/bun": "^1.2.5",
@@ -16,9 +16,9 @@
16
16
  },
17
17
  },
18
18
  "packages": {
19
- "@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.17", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-0cIwu25eX4m44iDZcWy3yoFf5SQakJjJh8fbSg7rYBgwznt01Fa2+li7Bne0deJJ5h3bwCNK9jHz9EzcCOJmVg=="],
19
+ "@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.18", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-jw6+W2DATSOAo4kmzrTBe1ZSXmn67/HXjAzpAas/92q1fBLiKfqmmGE/nW4NpA//ipP1849EHxIfp4yd5wMgig=="],
20
20
 
21
- "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.24", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-qWK7ZbYFfARyAbETrPYzItR3beF1MeM5goGG+iKQfAgNzpeicphFsxvTQj/3gNRcZOR+yj7g/hqN7MVUdZ5d2g=="],
21
+ "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.25", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-3uuEt3r9HJwdbQitD/fqWin3VCF27nYTvNNuvhq+DWSjIchkcIpOgNaGNdTgMTgwrs0KjXT5OyeL0k6WThoG3A=="],
22
22
 
23
23
  "@types/bun": ["@types/bun@1.2.5", "", { "dependencies": { "bun-types": "1.2.5" } }, "sha512-w2OZTzrZTVtbnJew1pdFmgV99H0/L+Pvw+z1P67HaR18MHOzYnTYOi6qzErhK8HyT+DB782ADVPPE92Xu2/Opg=="],
24
24
 
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "module": "index.ts",
19
19
  "type": "module",
20
- "version": "1.1.21",
20
+ "version": "1.1.23",
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
@@ -28,7 +28,7 @@
28
28
  "typescript": "^5.8.2"
29
29
  },
30
30
  "dependencies": {
31
- "@flowscripter/template-bun-library": "1.0.17",
32
- "@flowscripter/template-bun-rust-library": "1.0.24"
31
+ "@flowscripter/template-bun-library": "1.0.18",
32
+ "@flowscripter/template-bun-rust-library": "1.0.25"
33
33
  }
34
34
  }