https://github.com/yuyingwu/blog
Yuying Wu's Blog
https://github.com/yuyingwu/blog
article blog css education gatsby-blog graphql html javascript learn-javascript learn-to-code markdown react
Last synced: 22 days ago
JSON representation
Yuying Wu's Blog
- Host: GitHub
- URL: https://github.com/yuyingwu/blog
- Owner: YuyingWu
- License: mit
- Created: 2014-04-19T06:09:33.000Z (about 11 years ago)
- Default Branch: gatsby
- Last Pushed: 2025-03-22T06:58:42.000Z (about 1 month ago)
- Last Synced: 2025-03-22T07:20:09.895Z (about 1 month ago)
- Topics: article, blog, css, education, gatsby-blog, graphql, html, javascript, learn-javascript, learn-to-code, markdown, react
- Language: JavaScript
- Homepage: http://www.wuyuying.com/
- Size: 13.8 MB
- Stars: 29
- Watchers: 2
- Forks: 4
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yuying Wu's Blog
## 主题开发
> node >= 10.13.0
文件目录:
- workspace
- blog (current repo)
- gatsby-theme-chaton
- package.json```
# workspace/package.json{
"name": "gatsby-starter-theme-workspace",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "yarn workspace wyy-blog develop",
"build": "yarn workspace wyy-blog build",
"serve": "yarn workspace wyy-blog serve"
},
"workspaces": [
"wyy-blog",
"gatsby-theme-chaton"
]
}
```其中,在blog中的 `package.json` 对 `gatsby-theme-chaton` 依赖的版本为 `*`。
```
# blog/package.json"dependencies": {
"gatsby-theme-chaton": "*"
}
```运行:
```shell
yarn dev
```