use bun
This commit is contained in:
Ruidy 2024-04-27 00:34:41 +02:00
parent 2d2357e925
commit 36a28385c1
No known key found for this signature in database
GPG key ID: E00F51288CB857CC
11 changed files with 53 additions and 9133 deletions

34
.gitignore vendored
View file

@ -1,12 +1,24 @@
build/
node_modules/
.idea/
.vscode/
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.env.*
!.env.example

7
.gitpod.Dockerfile vendored
View file

@ -1,7 +0,0 @@
FROM gitpod/workspace-full
# Install custom tools, runtimes, etc.
# For example "bastet", a command-line tetris clone:
# RUN brew install bastet
#
# More information: https://www.gitpod.io/docs/config-docker/

View file

@ -1,6 +0,0 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: yarn install && yarn build
command: yarn start

21
TODO.md
View file

@ -1,15 +1,10 @@
# TO DO
- [ ] send message after contact form validation (confirm to sender and msg+info to admin)
- [ ] Breadcrumb
- [ ] Cookie bar
- [x] code cleanup (props and refactoring)
- [ ] Back to top button
- [ ] Close Sidebar at outside click
- [ ] Take a look at some components [here](http://react-materialize.github.io/react-materialize/?path=/story/css-grid--default)
- [ ] Decoupled application and data layers. Abstract such that the front end does not know where the data comes from.
- [x] Create PageLayout component
- [ ] Use Css-in-Js
- [x] Redirect to 404
- [x] Typescript
- [x] strict typing
- [x] use bun package manager
- [ ] use nuxt framework
- [ ] rewrite the random page, the current landing page
- [ ] rewrite the recipe page
- [ ] deploy
- [ ] pwa
- [ ] seo, robots.txt
- [ ] update the README

5
app.vue Normal file
View file

@ -0,0 +1,5 @@
<template>
<div>
<NuxtWelcome />
</div>
</template>

BIN
bun.lockb Executable file

Binary file not shown.

4
nuxt.config.ts Normal file
View file

@ -0,0 +1,4 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true }
})

View file

@ -1,42 +1,17 @@
{
"name": "meal-planner",
"version": "0.1.0",
"name": "chefs",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.1.1",
"react-scripts": "^5.0.0"
},
"type": "module",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"build": "nuxt build",
"dev": "nuxt dev --port=3009",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"prettier": "^2.5.1",
"typescript": "^4.2.3"
"dependencies": {
"nuxt": "^3.11.2",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
}
}

View file

@ -1,22 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="icon" href="%PUBLIC_URL%/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#ff6d00"/>
<meta name="description" content="Online Meal Planner | Chef's"/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png"/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Marck+Script&display=swap"/>
<title>Online Meal Planner | Chef's</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>

View file

@ -1,29 +1,4 @@
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}

9011
yarn.lock

File diff suppressed because it is too large Load diff