Skip to content

Commit b33ee3e

Browse files
committed
chore: wip
1 parent 974d028 commit b33ee3e

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

.stacks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![npm downloads][npm-downloads-src]][npm-downloads-href]
99
<!-- [![Codecov][codecov-src]][codecov-href] -->
1010

11-
_Pre-release until public beta released. Coming May/June._
11+
_Beta coming soon._
1212

1313
The goal of the framework is to _help you_ create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. Stacks is a rapid application development framework, meeting all your full stack needs.
1414

.stacks/core/buddy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![npm downloads][npm-downloads-src]][npm-downloads-href]
99
<!-- [![Codecov][codecov-src]][codecov-href] -->
1010

11-
_Pre-release until public beta released. Coming May/June._
11+
_Beta coming soon._
1212

1313
The goal of the framework is to _help you_ create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. Stacks is a rapid application development framework, meeting all your full stack needs.
1414

.stacks/core/validation/src/types/env.ts

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import type { Infer } from '@vinejs/vine/build/src/types'
44
import { loadEnv } from 'vite'
55
import { projectPath } from '@stacksjs/path'
66

7+
export * from '@vinejs/vine/build/src/symbols'
8+
79
// TODO: envSchema needs to be auto generated from the .env file
810
// envSchema could also be named "backendEnvSchema"
911
const envSchema = validator.object({
@@ -123,15 +125,12 @@ const frontendEnvSchema = validator.object({
123125
FRONTEND_APP_URL: validator.string().optional(),
124126
})
125127

126-
export type BackendEnv = Infer<typeof envSchema>
127-
export type BackendEnvKeys = keyof BackendEnv
128+
export type Env = Infer<typeof envSchema>
129+
export type EnvKeys = keyof Env
128130

129131
export type FrontendEnv = Infer<typeof frontendEnvSchema>
130132
export type FrontendEnvKeys = keyof FrontendEnv
131133

132-
export type Env = Infer<typeof envSchema>
133-
export type EnvKeys = keyof Env
134-
135134
export const env = process.env as Env
136135
export async function getEnv() {
137136
try {
@@ -147,15 +146,3 @@ export async function getEnv() {
147146
}
148147

149148
export { loadEnv }
150-
151-
// export async function getEnvIssues(env?: any): void {
152-
// const result = await getenv
153-
//
154-
// if (!result.success) {
155-
// const message = result.error.message
156-
// log.error(message)
157-
// return
158-
// }
159-
//
160-
// return result
161-
// }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![npm downloads][npm-downloads-src]][npm-downloads-href]
99
<!-- [![Codecov][codecov-src]][codecov-href] -->
1010

11-
_Pre-release until public beta released. Coming May/June._
11+
_Beta coming soon._
1212

1313
The goal of the framework is to _help you_ create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. Stacks is a rapid application development framework, meeting all your full stack needs.
1414

0 commit comments

Comments
 (0)