Skip to content

Commit

Permalink
0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 10, 2023
1 parent 46b07e3 commit 8a98234
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
.github/
.turbo/
Source/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.11

- Cleanup

## 0.0.10

- Cleanup
Expand Down
4 changes: 1 addition & 3 deletions Source/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ import Build from "./Command/Build.js";
import _JSON from "./Library/JSON.js";

try {
const { version } = await _JSON("../package.json", import.meta.url);

new Command()
.name("baxast")
.version(version)
.version((await _JSON("../package.json", import.meta.url))?.version)
.description("Builds files")
.argument("<Files...>", "Files to build")
.option("-ts, --TypeScript <File>", "TypeScript configuration file")
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "baxast",
"version": "0.0.10",
"version": "0.0.11",
"homepage": "https://github.com/baxast/baxast#readme",
"bugs": {
"url": "https://github.com/baxast/baxast/issues"
Expand Down

0 comments on commit 8a98234

Please sign in to comment.