Skip to content

Commit

Permalink
feat: support svelte and astro
Browse files Browse the repository at this point in the history
  • Loading branch information
baozouai committed Jul 17, 2023
1 parent 945180b commit a5abcf5
Show file tree
Hide file tree
Showing 18 changed files with 2,367 additions and 533 deletions.
10 changes: 10 additions & 0 deletions README-zh_CN.md
Expand Up @@ -30,6 +30,16 @@

中文 | [English](./README.md)

🔥 Features

- 支持打印文件名
- 支持打印所在行(加上endLine则支持结束行)
- 支持打印参数名称
- 支持分隔符来分开每个参数
- 支持不同的文件 —— 👉 .js、.jsx、.ts、.tsx、.vue、.svelte 和 .astro

> 更多用法,请看[示例](#-example)
## 📦 安装

```sh
Expand Down
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -30,6 +30,16 @@

English | [中文](./README-zh_CN.md)

🔥 Features

- Support to log the flog filename,
- Support tolog line
- Support to log argument name
- Support to log separator
- Support different files —— 👉 .js, .jsx, .ts, .tsx, .vue, .svelte, and .astro

> for more usage please see the [examples](#-example)
## 📦 Install

```sh
Expand Down
2 changes: 1 addition & 1 deletion build.config.ts
Expand Up @@ -4,7 +4,7 @@ export default defineBuildConfig({
entries: [
'src/index',
],
clean: false,
clean: true,
declaration: true,
externals: [
'vite',
Expand Down
5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -38,8 +38,9 @@
"prepublishOnly": "npm run clean && npm run build",
"release": "npm publish",
"prepare": "husky install",
"play": "pnpm --filter vue dev",
"play:react": "pnpm --filter react dev"
"play": "pnpm -C playgrounds/vue dev",
"play:react": "pnpm -C playgrounds/react dev",
"play:astro": "pnpm -C playgrounds/astro dev"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0 || ^4.0.0"
Expand Down
21 changes: 21 additions & 0 deletions playgrounds/astro/.gitignore
@@ -0,0 +1,21 @@
# build output
dist/

# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
54 changes: 54 additions & 0 deletions playgrounds/astro/README.md
@@ -0,0 +1,54 @@
# Astro Starter Kit: Basics

```
npm create astro@latest -- --template basics
```

[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)

> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
![basics](https://user-images.githubusercontent.com/4677417/186188965-73453154-fdec-4d6b-9c34-cb35c248ae5b.png)

## 🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

```
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
└── package.json
```

Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.

There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the `public/` directory.

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## 👀 Want to learn more?

Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
11 changes: 11 additions & 0 deletions playgrounds/astro/astro.config.mjs
@@ -0,0 +1,11 @@
import { defineConfig } from 'astro/config';
import enhanceLog from '../../src'
import inspect from 'vite-plugin-inspect'
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [enhanceLog({
splitBy: '\n'
}), inspect()]
}
});
15 changes: 15 additions & 0 deletions playgrounds/astro/package.json
@@ -0,0 +1,15 @@
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"astro": "^2.8.3"
}
}
9 changes: 9 additions & 0 deletions playgrounds/astro/public/favicon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions playgrounds/astro/src/components/Card.astro
@@ -0,0 +1,63 @@
---
interface Props {
title: string;
body: string;
href: string;
}
const { href, title, body } = Astro.props;
---

<li class="link-card">
<a href={href}>
<h2>
{title}
<span>&rarr;</span>
</h2>
<p>
{body}
</p>
</a>
</li>
<style>
.link-card {
list-style: none;
display: flex;
padding: 0.25rem;
background-color: white;
background-image: none;
background-size: 400%;
border-radius: 0.6rem;
background-position: 100%;
transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.link-card > a {
width: 100%;
text-decoration: none;
line-height: 1.4;
padding: 1rem 1.3rem;
border-radius: 0.35rem;
color: #111;
background-color: white;
opacity: 0.8;
}
h2 {
margin: 0;
font-size: 1.25rem;
transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
p {
margin-top: 0.5rem;
margin-bottom: 0;
color: #444;
}
.link-card:is(:hover, :focus-within) {
background-position: 0;
background-image: var(--accent-gradient);
}
.link-card:is(:hover, :focus-within) h2 {
color: rgb(var(--accent));
}
</style>
1 change: 1 addition & 0 deletions playgrounds/astro/src/env.d.ts
@@ -0,0 +1 @@
/// <reference types="astro/client" />
36 changes: 36 additions & 0 deletions playgrounds/astro/src/layouts/Layout.astro
@@ -0,0 +1,36 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description">
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>
<style is:global>
:root {
--accent: 124, 58, 237;
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%);
}
html {
font-family: system-ui, sans-serif;
background-color: #F6F6F6;
}
code {
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
}
</style>
106 changes: 106 additions & 0 deletions playgrounds/astro/src/pages/index.astro
@@ -0,0 +1,106 @@
---
import Layout from '../layouts/Layout.astro';
import Card from '../components/Card.astro';
const a = 1
const b = {
c: {
d: 2
}
}
console.log(1, 2, 3, a, b)
---

<script>
const a = 11
const bb = {
cc: {
dd: 22
}
}

console.log(1, 2, 3, a, bb)


</script>

<Layout title="W11elcome to Astro.">
<main >
<h1>We11lcome to <span class="text-gradient">Astro</span></h1>
<p class="instructions">
To get started, open the directory <code>src/pages</code> in your project.<br />
<strong>Code Challenge:</strong> Tweak the "Welcome to Astro" message above.
</p>
<ul role="list" class="link-card-grid">
<Card
href="https://docs.astro.build/"
title="Documentation"
body="Learn how Astro works and explore the official API docs."
/>
<Card
href="https://astro.build/integrations/"
title="Integrations"
body="Supercharge your project with new frameworks and libraries."
/>
<Card
href="https://astro.build/themes/"
title="Themes"
body="Explore a galaxy of community-built starter themes."
/>
<Card
href="https://astro.build/chat/"
title="Community"
body="Come say hi to our amazing Discord community. ❤️"
/>
</ul>
</main>
</Layout>

<style>
main {
margin: auto;
padding: 1.5rem;
max-width: 60ch;
}
h1 {
font-size: 3rem;
font-weight: 800;
margin: 0;
}
.text-gradient {
background-image: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 400%;
background-position: 0%;
}
.instructions {
line-height: 1.6;
margin: 1rem 0;
border: 1px solid rgba(var(--accent), 25%);
background-color: white;
padding: 1rem;
border-radius: 0.4rem;
}
.instructions code {
font-size: 0.875em;
font-weight: bold;
background: rgba(var(--accent), 12%);
color: rgb(var(--accent));
border-radius: 4px;
padding: 0.3em 0.45em;
}
.instructions strong {
color: rgb(var(--accent));
}
.link-card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
gap: 1rem;
padding: 0;
}
</style>
3 changes: 3 additions & 0 deletions playgrounds/astro/tsconfig.json
@@ -0,0 +1,3 @@
{
"extends": "astro/tsconfigs/strict"
}
2 changes: 0 additions & 2 deletions playgrounds/react/package.json
Expand Up @@ -19,8 +19,6 @@
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"nodemon": "^2.0.21",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-enhance-log": "workspace:*"
}
}

0 comments on commit a5abcf5

Please sign in to comment.