-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make beta for 'create' project, fix readme descriptions, change documentation styles, add todos...
- Loading branch information
Ángel Albiñana Espejo
authored and
Ángel Albiñana Espejo
committed
Aug 21, 2024
1 parent
a99c5c8
commit 0d32c11
Showing
40 changed files
with
414 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,4 @@ yarn.lock | |
**/__cache__ | ||
.DS_Store | ||
**/.DS_Store | ||
packages/_config/exts-examples/** | ||
packages/create/templates/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
- [ ] ... --> | ||
|
||
## 🌈 General | ||
|
||
- [ ] Fix and complete README files | ||
|
||
|
||
## 📖 Docs | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @backan/builder | ||
|
||
## 0.0.5 | ||
|
||
### Patch Changes | ||
|
||
- Fix general issues | ||
|
||
## 0.0.4 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { build } from './main' | ||
|
||
await build( { | ||
build( { | ||
input : '', | ||
} ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export const target = 'node20' | ||
export const name = 'BACKAN-BUILDER' | ||
export const ERROR_ID = { | ||
NO_INPUT : 'NO_INPUT', | ||
PLATFORM_UNKWON : 'PLATFORM_UNKWON', | ||
ON_ESBUILD : 'ON_ESBUILD', | ||
ON_NCC : 'ON_NCC', | ||
ON_PKG : 'ON_PKG', | ||
UNEXPECTED : 'UNEXPECTED', | ||
} as const | ||
export const BUILDER_TYPE = { | ||
ALL : 'all', | ||
CJS : 'cjs', | ||
BIN : 'bin', | ||
} as const | ||
|
||
export const ARCH = { | ||
ARM64 : 'arm64', | ||
X64 : 'x64', | ||
} as const |
Oops, something went wrong.