Skip to content

Commit 1f94dbf

Browse files
committed
chore: wip
1 parent d30524c commit 1f94dbf

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ For casual chit-chat with others using this package:
362362

363363
Stacks OSS will always stay open-sourced, and we will always love to receive postcards from wherever Stacks is used! _And we also publish them on our website. Thank you, Spatie._
364364

365-
Our address: Stacks.js, 5710 Crescent Park #107, Playa Vista 90094, CA, USA 🌎
365+
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎
366366

367367
## Sponsors
368368

storage/framework/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ For casual chit-chat with others using this package:
360360

361361
Two things are true: Stacks OSS will always stay open-source, and we do/would love to receive postcards from wherever Stacks is used! 🌍 _And we also publish them on our website. -Thank you, Spatie_
362362

363-
Our address: Stacks.js, 5710 Crescent Park #107, Playa Vista 90094, CA, USA
363+
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States
364364

365365
## Sponsors
366366

storage/framework/core/actions/src/generate/lib-entries.ts

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@ import { log } from '@stacksjs/logging'
44
import { hasComponents, hasFunctions } from '@stacksjs/storage'
55
import { generateLibEntry } from '../helpers/lib-entries'
66

7-
if (library.releaseable && hasComponents()) {
8-
await generateLibEntry('vue-components')
9-
await generateLibEntry('web-components')
10-
} else {
11-
log.info('No components found. Skipping building component entry points.')
7+
export async function generateLibEntries() {
8+
console.log('generateLibEntries')
9+
log.info('Generating library entry points...')
10+
console.log('generateLibEntries2')
11+
12+
if (library.releaseable && hasComponents()) {
13+
await generateLibEntry('vue-components')
14+
await generateLibEntry('web-components')
15+
} else {
16+
log.info('No components found. Skipping building component entry points.')
17+
}
18+
19+
if (library.releaseable && hasFunctions()) await generateLibEntry('functions')
20+
else log.info('No functions found. Skipping building function entry point.')
1221
}
1322

14-
if (library.releaseable && hasFunctions()) await generateLibEntry('functions')
15-
else log.info('No functions found. Skipping building function entry point.')
23+
await generateLibEntries()

storage/framework/core/buddy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ For casual chit-chat with others using this package:
360360

361361
Two things are true: Stacks OSS will always stay open-source, and we do/would love to receive postcards from wherever Stacks is used! 🌍 _And we also publish them on our website. -Thank you, Spatie_
362362

363-
Our address: Stacks.js, 5710 Crescent Park #107, Playa Vista 90094, CA, USA
363+
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States
364364

365365
## Sponsors
366366

0 commit comments

Comments
 (0)