Skip to content

Commit 8c345ee

Browse files
feat(blazebuild): v2
1 parent 8f06824 commit 8c345ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+648
-2396
lines changed

blaze/wrapper/blaze_wrapper.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ function getProperty(name, def) {
7979

8080
function determineIndexFile() {
8181
const blazeSrcPath = getProperty("blaze.srcpath", "build_src");
82-
return path.resolve(PROJECT_DIR, blazeSrcPath, "src/index.ts");
82+
return path.resolve(PROJECT_DIR, blazeSrcPath, "src/main/typescript/index.ts");
8383
}
8484

85+
8586
function getBunPath() {
8687
if (process.isBun) {
8788
return process.argv[0];

blazebuild/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,3 @@ dist
173173

174174
# Finder (MacOS) folder config
175175
.DS_Store
176-
bun.lockb

blazebuild/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ bun install
99
To run:
1010

1111
```bash
12-
bun run src/index.ts
12+
bun run index.ts
1313
```
1414

15-
This project was created using `bun init` in bun v1.0.31. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
15+
This project was created using `bun init` in bun v1.1.9. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.

blazebuild/bun.lockb

5.15 KB
Binary file not shown.

blazebuild/package.json

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
{
22
"name": "blazebuild",
33
"module": "src/index.ts",
4+
"type": "module",
45
"devDependencies": {
56
"@types/bun": "latest",
6-
"@types/glob": "^8.1.0",
7-
"@types/node": "^20.12.2"
8-
},
9-
"peerDependencies": {
10-
"typescript": "^5.0.0"
7+
"typescript": "^5.4.5"
118
},
129
"dependencies": {
13-
"chalk": "4",
14-
"deepmerge": "^4.3.1",
15-
"glob": "^10.3.12",
16-
"reflect-metadata": "^0.2.2"
17-
},
18-
"scripts": {
19-
"dev": "bun run src/index.ts"
10+
"chalk": "4"
2011
}
21-
}
12+
}

blazebuild/src/bun.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

blazebuild/src/core/AbstractTask.ts

Lines changed: 0 additions & 312 deletions
This file was deleted.

0 commit comments

Comments
 (0)