Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 13, 2023
1 parent c45bc13 commit 0f982e4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2

- Renamed

## 0.1.1

- Cleanup
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Add configuration and setup scripts:

```sh
npm install -D -E baxast
npm install -D -E typescriptbuild
```

## Usage
Expand All @@ -16,10 +16,10 @@ npm install -D -E baxast
{
"name": "my-awesome-package",
"scripts": {
"prepublishOnly": "baxast 'Source/**/*.ts'"
"prepublishOnly": "TypeScriptBuild 'Source/**/*.ts'"
},
"dependencies": {
"baxast": "latest"
"typescriptbuild": "0.1.2"
}
}
```
Expand All @@ -29,7 +29,7 @@ npm install -D -E baxast
```json
{
"scripts": {
"prepublishOnly": "baxast 'Source/**/*.ts' -es esbuild.ts"
"prepublishOnly": "TypeScriptBuild 'Source/**/*.ts' -es esbuild.ts"
}
}
```
Expand All @@ -51,5 +51,5 @@ npm install -D -E baxast
The script will now automatically compile your build files with [esbuild] and
add TypeScript types.

[baxast]: https://npmjs.org/baxast
[typescriptbuild]: https://npmjs.org/typescriptbuild
[esbuild]: https://npmjs.org/esbuild
2 changes: 1 addition & 1 deletion Source/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import _JSON from "./Library/JSON.js";

try {
new Command()
.name("baxast")
.name("TypeScript Build")
.version((await _JSON("../package.json", import.meta.url))?.version)
.description("Builds files")
.argument("<Files...>", "Files to build")
Expand Down
2 changes: 1 addition & 1 deletion Target/Index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "baxast",
"version": "0.1.1",
"homepage": "https://github.com/NikolaRHristov/baxast#readme",
"name": "typescriptbuild",
"version": "0.1.2",
"homepage": "https://github.com/NikolaRHristov/TypeScriptBuild#readme",
"bugs": {
"url": "https://github.com/NikolaRHristov/baxast/issues"
"url": "https://github.com/NikolaRHristov/TypeScriptBuild/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NikolaRHristov/baxast.git"
"url": "git+https://github.com/NikolaRHristov/TypeScriptBuild.git"
},
"type": "module",
"main": "./Target/Index.js",
"types": "./Target/Index.d.ts",
"bin": {
"baxast": "Target/Bin.js"
"TypeScriptBuild": "Target/Bin.js"
},
"scripts": {
"prepublishOnly": "node --no-warnings --loader ts-node/esm Source/Index.ts 'Source/**/*.ts'"
Expand Down

0 comments on commit 0f982e4

Please sign in to comment.