Compare commits

..

No commits in common. "2c73b9862d401dac15021eed3f7847d46132a8ed" and "3680533eefef042fc77246dd3d374aafe10c428f" have entirely different histories.

4 changed files with 34 additions and 3723 deletions

8
.gitignore vendored
View File

@ -1,5 +1,11 @@
node_modules node_modules
package-lock.json
yarn.lock
*.map *.map
public/env.js public/env.js
public/index.html public/index.html
/dist /dist
.yarn
.pnp.js
.yarnrc.yml
pnpm-lock.yaml

View File

@ -1,11 +1,11 @@
FROM registry.odit.services/hub/library/node:19.7.0-alpine3.16 as build FROM registry.odit.services/hub/library/node:19.5.0-alpine3.16 as build
WORKDIR /app WORKDIR /app
COPY package.json ./ COPY package.json ./
RUN npx pnpm i RUN npx pnpm i
COPY package.json pnpm-lock.yaml *.config.js postcss.config.cjs tailwind.config.js vite.config.js index.html ./ COPY package.json *.config.js postcss.config.cjs tailwind.config.js vite.config.js index.html ./
COPY src ./src COPY src ./src
COPY public ./public COPY public ./public
RUN pnpm build RUN yarn build
# final image # final image
FROM registry.odit.services/library/nginx-brotli:3.15 as final FROM registry.odit.services/library/nginx-brotli:3.15 as final
COPY --from=build /app/dist /usr/share/nginx/html COPY --from=build /app/dist /usr/share/nginx/html

View File

@ -10,19 +10,32 @@
}, },
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"devDependencies": { "devDependencies": {
"@odit/lfk-client-js": "0.13.3", "@odit/lfk-client-js": "0.13.1",
"@odit/license-exporter": "0.0.12", "@odit/license-exporter": "0.0.11",
"@sveltejs/vite-plugin-svelte": "1.0.0-next.6", "@sveltejs/vite-plugin-svelte": "1.0.0-next.6",
"@types/html-minifier": "4.0.2", "@types/html-minifier": "4.0.0",
"auto-changelog": "2.4.0", "@vincjo/datatables": "^1.1.0",
"autoprefixer": "10.4.14", "auto-changelog": "2.2.1",
"autoprefixer": "10.2.5",
"check-password-strength": "2.0.2",
"csvtojson": "2.0.10",
"gridjs": "3.4.0",
"html-minifier": "4.0.0", "html-minifier": "4.0.0",
"postcss": "8.4.21", "localforage": "1.9.0",
"release-it": "15.8.0", "marked": "2.0.3",
"svelte": "3.56.0", "postcss": "8.2.10",
"release-it": "14.6.1",
"svelte": "3.37.0",
"svelte-focus-trap": "1.2.0",
"svelte-i18n": "3.3.9",
"svelte-preprocess": "4.7.0", "svelte-preprocess": "4.7.0",
"svelte-select": "3.17.0",
"tailwindcss": "3.2.7", "tailwindcss": "3.2.7",
"vite": "2.1.5" "tinro": "0.6.1",
"toastify-js": "1.10.0",
"validator": "13.5.2",
"vite": "2.1.5",
"xlsx": "0.16.9"
}, },
"release-it": { "release-it": {
"git": { "git": {
@ -42,22 +55,6 @@
} }
}, },
"dependencies": { "dependencies": {
"@paralleldrive/cuid2": "^2.2.0", "@paralleldrive/cuid2": "^2.2.0"
"localforage": "1.10.0",
"tinro": "0.6.12",
"toastify-js": "1.12.0",
"svelte-focus-trap": "1.2.0",
"svelte-i18n": "3.6.0",
"svelte-select": "3.17.0",
"xlsx": "0.18.5",
"validator": "13.9.0",
"marked": "2.0.3",
"check-password-strength": "2.0.2",
"csvtojson": "2.0.10",
"gridjs": "3.4.0",
"@vincjo/datatables": "^1.4.0"
},
"volta": {
"node": "19.7.0"
} }
} }

3692
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff