Skip to content

Commit 4ab657e

Browse files
committed
chore: remove weird-bugs app
1 parent d0d882d commit 4ab657e

61 files changed

Lines changed: 219 additions & 1449 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ jobs:
4040
- name: Copy artifacts
4141
run: |
4242
mkdir -p dist/histoire
43+
mkdir -p dist/daisy
4344
touch dist/.nojekyll
4445
cp -r packages/ui/dist/* dist/histoire
45-
cp -r apps/vue/dist/* dist
46+
cp -r apps/daisy/dist/* dist/daisy
47+
cp -r apps/playground/dist/* dist
4648
4749
- name: Deploy to GitHub Pages
4850
uses: JamesIves/github-pages-deploy-action@v4.8.0

apps/daisy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.0",
55
"private": true,
66
"scripts": {
7-
"dev": "vite --host",
7+
"dev": "vite --host --port 3001",
88
"build": "pnpm type-check && vite build",
99
"preview": "vite preview",
1010
"type-check": "vue-tsc --build"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "@vue-workspace/vue",
2+
"name": "@vue-workspace/playground",
33
"type": "module",
44
"version": "0.0.0",
55
"private": true,
66
"scripts": {
7-
"dev": "vite",
7+
"dev": "vite --host --port 3000",
88
"build": "pnpm type-check && vite build",
99
"preview": "vite preview",
1010
"test": "vitest run",
File renamed without changes.

0 commit comments

Comments
 (0)