mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-04 11:15:55 +02:00
Added Build to makefile and few pnpm changes
This commit is contained in:
parent
0b2f2214f9
commit
b46b36dd35
4
Makefile
4
Makefile
@ -36,6 +36,10 @@ $(TARGET): $(VAR) $(CFG) $(SVELTE_TARGETS)
|
|||||||
$(info ===> BUILD cc-backend)
|
$(info ===> BUILD cc-backend)
|
||||||
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
|
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
|
||||||
|
|
||||||
|
build :
|
||||||
|
$(info ==> BUILD cc-backend)
|
||||||
|
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
$(info ===> BUILD frontend)
|
$(info ===> BUILD frontend)
|
||||||
cd web/frontend && npm install && npm run build
|
cd web/frontend && npm install && npm run build
|
||||||
|
@ -11,8 +11,11 @@
|
|||||||
"@rollup/plugin-node-resolve": "^15.2.3",
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||||
"@rollup/plugin-terser": "^0.4.4",
|
"@rollup/plugin-terser": "^0.4.4",
|
||||||
"@timohausmann/quadtree-js": "^1.2.6",
|
"@timohausmann/quadtree-js": "^1.2.6",
|
||||||
"rollup": "^4.12.1",
|
"rollup": "^4.18.0",
|
||||||
|
"rollup-plugin-commonjs": "^10.1.0",
|
||||||
"rollup-plugin-css-only": "^4.5.2",
|
"rollup-plugin-css-only": "^4.5.2",
|
||||||
|
"rollup-plugin-livereload": "^2.0.5",
|
||||||
|
"rollup-plugin-node-resolve": "^5.2.0",
|
||||||
"rollup-plugin-svelte": "^7.1.6",
|
"rollup-plugin-svelte": "^7.1.6",
|
||||||
"svelte": "^4.2.12"
|
"svelte": "^4.2.12"
|
||||||
},
|
},
|
||||||
|
1023
web/frontend/pnpm-lock.yaml
generated
Normal file
1023
web/frontend/pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,11 @@ import commonjs from '@rollup/plugin-commonjs';
|
|||||||
import resolve from '@rollup/plugin-node-resolve';
|
import resolve from '@rollup/plugin-node-resolve';
|
||||||
import terser from '@rollup/plugin-terser';
|
import terser from '@rollup/plugin-terser';
|
||||||
import css from 'rollup-plugin-css-only';
|
import css from 'rollup-plugin-css-only';
|
||||||
|
import livereload from 'rollup-plugin-livereload';
|
||||||
|
|
||||||
const production = !process.env.ROLLUP_WATCH;
|
|
||||||
// const production = false
|
// const production = !process.env.ROLLUP_WATCH;
|
||||||
|
const production = false
|
||||||
|
|
||||||
const plugins = [
|
const plugins = [
|
||||||
svelte({
|
svelte({
|
||||||
@ -30,6 +32,7 @@ const plugins = [
|
|||||||
// If we're building for production (npm run build
|
// If we're building for production (npm run build
|
||||||
// instead of npm run dev), minify
|
// instead of npm run dev), minify
|
||||||
production && terser(),
|
production && terser(),
|
||||||
|
livereload({ watch: 'public' }),
|
||||||
|
|
||||||
replace({
|
replace({
|
||||||
"process.env.NODE_ENV": JSON.stringify("development"),
|
"process.env.NODE_ENV": JSON.stringify("development"),
|
||||||
@ -50,7 +53,8 @@ const entrypoint = (name, path) => ({
|
|||||||
|
|
||||||
// we'll extract any component CSS out into
|
// we'll extract any component CSS out into
|
||||||
// a separate file - better for performance
|
// a separate file - better for performance
|
||||||
css({ output: `${name}.css` }),
|
css({ output: `${name}.css` })
|
||||||
|
|
||||||
],
|
],
|
||||||
watch: {
|
watch: {
|
||||||
clearScreen: false
|
clearScreen: false
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
class="card-body"
|
class="card-body"
|
||||||
on:submit|preventDefault={handleUserSubmit}
|
on:submit|preventDefault={handleUserSubmit}
|
||||||
>
|
>
|
||||||
<CardTitle class="mb-3">Create User</CardTitle>
|
<CardTitle class="mb-3">Add Create User</CardTitle>
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="username" class="form-label">Username (ID)</label>
|
<label for="username" class="form-label">Username (ID)</label>
|
||||||
<input
|
<input
|
||||||
|
Loading…
x
Reference in New Issue
Block a user