Clean up all legacy subproject .github configs, vite.config.ts/js files, and duplicate LICENSE files
Build and Deploy / build-and-deploy (push) Successful in 1m42s

This commit is contained in:
2026-05-16 22:32:48 -07:00
parent 312c16598c
commit bbdbeb9788
51 changed files with 0 additions and 2102 deletions
-24
View File
@@ -1,24 +0,0 @@
name: Demo
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
-17
View File
@@ -1,17 +0,0 @@
import { defineConfig } from "vite";
import { resolve } from "path";
export default defineConfig({
base: "/lit-force-graph/",
build: {
lib: {
entry: "src/lit-force-graph.ts",
formats: ["es"],
},
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
},
},
},
});