rename to theia
All checks were successful
Deployment / Deploy (push) Successful in 6m9s

This commit is contained in:
Benjamin Palko 2025-03-30 23:10:13 -04:00
parent 56cc37de7e
commit 81633cda04
72 changed files with 1299 additions and 37 deletions

View file

@ -5,7 +5,7 @@ on:
branches:
- main
jobs:
svelte-storybook:
theia-storybook:
name: Deploy ${{ env.GITHUB_REPOSITORY }}
runs-on: ubuntu-22.04
steps:
@ -23,6 +23,6 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
context: packages/svelte
file: packages/svelte/Dockerfile.storybook
tags: git.palko.ca/${{ env.GITHUB_REPOSITORY }}-svelte-storybook:latest
context: packages/theia
file: packages/theia/Dockerfile.storybook
tags: git.palko.ca/${{ env.GITHUB_REPOSITORY }}-theia-storybook:latest

View file

@ -3,9 +3,7 @@
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"packages/svelte"
],
"workspaces": [],
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
@ -24,4 +22,4 @@
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}
}

View file

@ -4,6 +4,7 @@ WORKDIR /opt/build
COPY . .
RUN bun install --frozen-lockfile \
&& bunx svelte-kit sync \
&& bun run build-storybook
FROM nginx:alpine3.21

View file

@ -1,27 +0,0 @@
{
"lockfileVersion": 1,
"workspaces": {
"": {
"name": "svelte-components",
"devDependencies": {
"@types/bun": "latest",
},
"peerDependencies": {
"typescript": "^5.0.0",
},
},
},
"packages": {
"@types/bun": ["@types/bun@1.2.4", "", { "dependencies": { "bun-types": "1.2.4" } }, "sha512-QtuV5OMR8/rdKJs213iwXDpfVvnskPXY/S0ZiFbsTjQZycuqPbMW8Gf/XhLfwE5njW8sxI2WjISURXPlHypMFA=="],
"@types/node": ["@types/node@22.13.9", "", { "dependencies": { "undici-types": "~6.20.0" } }, "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw=="],
"@types/ws": ["@types/ws@8.5.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw=="],
"bun-types": ["bun-types@1.2.4", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-nDPymR207ZZEoWD4AavvEaa/KZe/qlrbMSchqpQwovPZCKc7pwMoENjEtHgMKaAjJhy+x6vfqSBA1QU3bJgs0Q=="],
"typescript": ["typescript@5.8.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ=="],
"undici-types": ["undici-types@6.20.0", "", {}, "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="],
}
}

View file

@ -0,0 +1,11 @@
FROM oven/bun:1.2-alpine AS build
WORKDIR /opt/build
COPY . .
RUN bun install --frozen-lockfile \
&& bun run build-storybook
FROM nginx:alpine3.21
COPY --from=build --chown=1000:1000 /opt/build/storybook-static /usr/share/nginx/html

View file

@ -1,5 +1,6 @@
# Svelte Components
# Theia
Common Svelte components
To run:

1278
packages/theia/bun.lock Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
{
"name": "@atlas/svelte",
"name": "@atlas/theia",
"type": "module",
"version": "1.0.5-alpha",
"exports": {