Skip to content

Commit

Permalink
Merge pull request #41 from BBai-Tips/staging
Browse files Browse the repository at this point in the history
hotfix for compile target arg
  • Loading branch information
cngarrison authored Oct 7, 2024
2 parents 100e516 + 32a4336 commit 732b484
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [0.0.24a-beta] - 2024-10-07

### Changed

- hotfix for compile target arg


## [0.0.24-beta] - 2024-10-07

### Changed
Expand Down
2 changes: 1 addition & 1 deletion api/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-api",
"version": "0.0.24-beta",
"version": "0.0.24a-beta",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-read --allow-write --allow-run --allow-net --allow-env src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion api/scripts/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const compileProcess = new Deno.Command('deno', {
'compile',
'-A',
'--unstable',
target,
...(args.target ? ['--target', args.target] : []),
'--output',
output,
...includeArgs.split(' '),
Expand Down
2 changes: 1 addition & 1 deletion bui/deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"src/fixtures/**/*.ts"
]
},
"version": "0.0.24-beta"
"version": "0.0.24a-beta"
}
2 changes: 1 addition & 1 deletion cli/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-cli",
"version": "0.0.24-beta",
"version": "0.0.24a-beta",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-env --allow-read --allow-write --allow-run --allow-net src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai",
"version": "0.0.24-beta",
"version": "0.0.24a-beta",
"exports": "./cli/src/main.ts",
"tasks": {
"tool:check-types-project": "deno task -c ./cli/deno.jsonc check-types && deno task -c ./bui/deno.jsonc check-types && deno task -c ./api/deno.jsonc check-types",
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.0.24-beta";
export const VERSION = "0.0.24a-beta";

0 comments on commit 732b484

Please sign in to comment.