Skip to content

Commit

Permalink
release: v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YunYouJun committed May 2, 2022
1 parent 8c8fd42 commit 6abe06e
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@valaxyjs/monorepo",
"private": true,
"version": "0.2.4",
"version": "0.3.0",
"description": "📄 Vite & Vue powered static blog generator.",
"packageManager": "pnpm@7",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/create-valaxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-valaxy",
"version": "0.2.4",
"version": "0.3.0",
"main": "index.js",
"description": "Create Starter Template for Valaxy",
"homepage": "https://valaxy.yyj.moe",
Expand Down
4 changes: 2 additions & 2 deletions packages/create-valaxy/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"serve": "vite preview"
},
"dependencies": {
"valaxy": "0.2.4",
"valaxy-theme-yun": "0.2.4"
"valaxy": "0.3.0",
"valaxy-theme-yun": "0.3.0"
}
}
10 changes: 5 additions & 5 deletions packages/valaxy-theme-yun/components/YunGirls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
import { useRandomData } from 'valaxy-theme-yun/composables'
import { onImgError } from '../utils'
const props = defineProps<{
girls: GirlType[] | string
random?: boolean
}>()
interface GirlType {
name: string
url: string
Expand All @@ -15,6 +10,11 @@ interface GirlType {
reason?: string
}
const props = defineProps<{
girls: GirlType[] | string
random?: boolean
}>()
const { data } = useRandomData(props.girls, props.random)
</script>

Expand Down
10 changes: 5 additions & 5 deletions packages/valaxy-theme-yun/components/YunLinks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
import { useRandomData } from '../composables'
import { onImgError } from '../utils'
const props = defineProps<{
links: LinkType[]
random: boolean
}>()
interface LinkType {
avatar: string
name: string
Expand All @@ -16,6 +11,11 @@ interface LinkType {
desc: string
}
const props = defineProps<{
links: LinkType[]
random: boolean
}>()
const { data } = useRandomData(props.links, props.random)
</script>

Expand Down
2 changes: 1 addition & 1 deletion packages/valaxy-theme-yun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "valaxy-theme-yun",
"version": "0.2.4",
"version": "0.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/valaxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "valaxy",
"version": "0.2.4",
"version": "0.3.0",
"description": "📄 Vite & Vue powered static blog generator.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 6abe06e

Please sign in to comment.