Skip to content

Commit 53dc52e

Browse files
committed
chore: wip
chore: wip chore: wip
1 parent c3b8bd5 commit 53dc52e

File tree

5 files changed

+11
-67
lines changed

5 files changed

+11
-67
lines changed

config/team.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@ export default {
1313
members: {
1414
chris: 'chris@stacksjs.org',
1515
blake: 'blake@stacksjs.org',
16+
zoltan: 'zoltan@stacksjs.org',
17+
freddy: 'freddy@stacksjs.org',
18+
glenn: 'glenn@stacksjs.org',
19+
dorell: 'dorell@stacksjs.org',
20+
avery: 'avery@stacksjs.org',
1621
},
1722
} satisfies Team

storage/framework/core/.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,4 @@ node_modules/
1515
/playwright-report/
1616
/playwright/.cache/
1717

18-
# CDK asset staging directory
19-
.cdk.staging
2018
cdk.out

storage/framework/core/buddy/src/commands/setup.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import type { CLI, CliOptions } from '@stacksjs/types'
88

99
export function setup(buddy: CLI) {
1010
const descriptions = {
11-
ensure: 'This command ensures your project is setup correctly',
12-
setup: 'This command sets up your project for the first time',
11+
setup: 'This command ensures your project is setup correctly',
1312
project: 'Target a specific project',
1413
verbose: 'Enable verbose output',
1514
}
@@ -20,11 +19,12 @@ export function setup(buddy: CLI) {
2019
.option('-p, --project', descriptions.project, { default: false })
2120
.option('--verbose', descriptions.verbose, { default: false })
2221
.action(async (options: CliOptions) => {
23-
if (await ensurePkgxIsInstalled())
24-
await optimizePkgxDeps()
25-
else
22+
if (!await isPkgxInstalled())
2623
await installPkgx()
2724

25+
// ensure the minimal amount of deps are written to ./pkgx.yaml
26+
await optimizePkgxDeps()
27+
2828
await initializeProject(options)
2929
})
3030

@@ -34,7 +34,7 @@ export function setup(buddy: CLI) {
3434
})
3535
}
3636

37-
async function ensurePkgxIsInstalled(): Promise<boolean> {
37+
async function isPkgxInstalled(): Promise<boolean> {
3838
const result = await runCommand('pkgx --version', { silent: true })
3939

4040
if (result.isOk())

storage/framework/scripts/pkgx-install

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,3 @@ eval "$(pkgx integrate)"
175175

176176
# install the project dev deps
177177
eval "$(dev)"
178-
179-
# eval "$(pkgx bun install)"
180-
181-
# eval "$(pkgx bun run buddy setup)"

storage/framework/scripts/setup

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

0 commit comments

Comments
 (0)