demo-cicd seed

This commit is contained in:
seed
2026-09-17 15:59:49 +08:00
commit cc567a3c99
13 changed files with 1535 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<!doctype html>
<html><head><meta charset="utf-8"><title>demo</title></head>
<body><div id="app"></div><script type="module" src="/src/main.js"></script></body></html>
+1250
View File
File diff suppressed because it is too large Load Diff
+8
View File
@@ -0,0 +1,8 @@
{
"name": "demo-web",
"private": true,
"version": "1.0.0",
"scripts": { "build": "vite build" },
"dependencies": { "vue": "^3.4.0" },
"devDependencies": { "vite": "^5.2.0" }
}
+5
View File
@@ -0,0 +1,5 @@
{
"name": "@otone/demo-ui-utils",
"version": "1.0.0",
"description": "demo package published to nexus npm-hosted"
}
+2
View File
@@ -0,0 +1,2 @@
import { createApp, h } from 'vue'
createApp({ render: () => h('h1', 'demo-web CI/CD OK') }).mount('#app')