Skip to content

Commit

Permalink
Default Remote Build Target
Browse files Browse the repository at this point in the history
  • Loading branch information
sinclairzx81 committed Dec 4, 2024
1 parent 5baa051 commit 17a8903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hammer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function build(target = 'target/build') {
// -------------------------------------------------------------------------------
// Build To
// -------------------------------------------------------------------------------
export async function build_to(remote = 'target/build', target = 'target/build') {
export async function build_to(remote = 'target/remote', target = 'target/build') {
await clean()
await Promise.all([
Build.Package.build(target),
Expand Down
2 changes: 1 addition & 1 deletion src/type/indexed/indexed-property-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function FromLiteral<LiteralValue extends TLiteralValue>(literalValue: LiteralVa
// prettier-ignore
export type TIndexPropertyKeys<Type extends TSchema> = (
Type extends TTemplateLiteral ? TFromTemplateLiteral<Type> :
Type extends TUnion<infer Types extends TSchema[]> ? TFromUnion<Types> :
Type extends TUnion<infer Types extends TSchema[]> ? TFromUnion<Types> :
Type extends TLiteral<infer Value extends TLiteralValue> ? TFromLiteral<Value> :
Type extends TNumber ? ['[number]'] :
Type extends TInteger ? ['[number]'] :
Expand Down

0 comments on commit 17a8903

Please sign in to comment.