Skip to content

Commit

Permalink
Merge pull request #829 from patrickcate/feature/1.8.x
Browse files Browse the repository at this point in the history
1.8.beta.0
  • Loading branch information
patrickcate authored Feb 25, 2024
2 parents 94ee1ae + bf5a585 commit 2442477
Show file tree
Hide file tree
Showing 19 changed files with 17,739 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ version: 2
updates:
# Maintain dependencies for npm
- package-ecosystem: 'npm'
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'
Expand All @@ -16,6 +17,7 @@ updates:
open-pull-requests-limit: 20

- package-ecosystem: github-actions
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name: 'CodeQL'

on:
push:
branches: [develop, main]
branches: [develop, main, alpha, beta]
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
branches: [develop, alpha, beta]
schedule:
- cron: '23 23 * * 3'

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
- alpha
- beta

jobs:
release:
Expand Down
24 changes: 24 additions & 0 deletions playground/nuxt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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
.env.*
!.env.example
75 changes: 75 additions & 0 deletions playground/nuxt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
3 changes: 3 additions & 0 deletions playground/nuxt/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<script setup></script>

<template></template>
4 changes: 4 additions & 0 deletions playground/nuxt/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
})
Loading

0 comments on commit 2442477

Please sign in to comment.