Added Build to makefile and few pnpm changes

This commit is contained in:
sanjay7178 2024-05-30 17:23:20 +05:30
parent 0b2f2214f9
commit b46b36dd35
5 changed files with 1039 additions and 5 deletions

View File

@ -36,6 +36,10 @@ $(TARGET): $(VAR) $(CFG) $(SVELTE_TARGETS)
$(info ===> BUILD cc-backend)
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
build :
$(info ==> BUILD cc-backend)
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
frontend:
$(info ===> BUILD frontend)
cd web/frontend && npm install && npm run build

View File

@ -11,8 +11,11 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@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-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^7.1.6",
"svelte": "^4.2.12"
},

1023
web/frontend/pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,9 +4,11 @@ import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
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 = [
svelte({
@ -30,6 +32,7 @@ const plugins = [
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser(),
livereload({ watch: 'public' }),
replace({
"process.env.NODE_ENV": JSON.stringify("development"),
@ -50,7 +53,8 @@ const entrypoint = (name, path) => ({
// we'll extract any component CSS out into
// a separate file - better for performance
css({ output: `${name}.css` }),
css({ output: `${name}.css` })
],
watch: {
clearScreen: false

View File

@ -52,7 +52,7 @@
class="card-body"
on:submit|preventDefault={handleUserSubmit}
>
<CardTitle class="mb-3">Create User</CardTitle>
<CardTitle class="mb-3">Add Create User</CardTitle>
<div class="mb-3">
<label for="username" class="form-label">Username (ID)</label>
<input