Skip to content

Commit 163be62

Browse files
committed
chore: wip
1 parent c9c22d3 commit 163be62

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

bun.lockb

0 Bytes
Binary file not shown.

resources/components/Marketing/Hero.vue

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script setup lang="ts">
2-
import logoLaravel from '../../assets/images/logos/laravel.svg'
2+
// import logoLaravel from '../../assets/images/logos/laravel.svg'
33
4-
const companies = ref([
5-
[
6-
{ name: 'Laravel', logo: logoLaravel },
7-
{ name: 'Laravel', logo: logoLaravel },
8-
{ name: 'Laravel', logo: logoLaravel },
9-
],
10-
])
4+
// const companies = ref([
5+
// [
6+
// { name: 'Laravel', logo: logoLaravel },
7+
// { name: 'Laravel', logo: logoLaravel },
8+
// { name: 'Laravel', logo: logoLaravel },
9+
// ],
10+
// ])
1111
</script>
1212

1313
<template>
@@ -32,7 +32,11 @@ const companies = ref([
3232
<br>Rapid development, for the best full-stack teams, and individuals.
3333
</p>
3434
<div class="mt-10 flex justify-center gap-x-6">
35-
<Button variant="solid" color="black" href="/register">
35+
<Button
36+
variant="solid"
37+
color="blue"
38+
href="/register"
39+
>
3640
View Documentation
3741
</Button>
3842

resources/modules/i18n.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { UserModule } from '@stacksjs/types'
22
import type { Locale } from 'vue-i18n'
33
import fs from 'node:fs/promises'
44
import path from 'node:path'
5+
import { handleError } from '@stacksjs/error-handling'
56
import yaml from 'js-yaml'
67
import { createI18n } from 'vue-i18n'
78

@@ -22,7 +23,8 @@ export const install: UserModule = async ({ app }) => {
2223
await fs.access(langPath)
2324
}
2425
catch (error) {
25-
console.error(`The lang directory does not exist: ${langPath}`)
26+
handleError(`The lang directory does not exist: ${langPath}`, { shouldExit: false })
27+
handleError(error, { shouldExit: false })
2628
return // Exit the function if the directory doesn't exist
2729
}
2830

storage/framework/core/actions/src/files/watch.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { path } from '@stacksjs/path'
22
import { fsWatch as watch } from '@stacksjs/storage'
33

4-
watch(path.userModelsPath(), async (event: string, filename: string) => {
4+
// watch(path.userModelsPath(), async (event: string, filename: string) => {
5+
watch(path.userModelsPath(), async () => {
56
await Bun.$`bun ../orm/generate-model.ts`
67

78
console.log('generated orm models')

storage/framework/core/lint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
5555
"@eslint/markdown": "^6.2.0",
5656
"@stacksjs/development": "workspace:*",
57-
"@stacksjs/eslint-config": "^3.7.3-stacks-1.5",
57+
"@stacksjs/eslint-config": "^3.7.3-stacks-1.6",
5858
"@stylistic/eslint-plugin": "^2.9.0",
5959
"@typescript-eslint/eslint-plugin": "^8.8.1",
6060
"@unocss/eslint-plugin": "0.61.0",

0 commit comments

Comments
 (0)