Initial commit: Open sourcing all of the Maple Open Technologies code.
This commit is contained in:
commit
755d54a99d
2010 changed files with 448675 additions and 0 deletions
54
web/maplepress-frontend/Taskfile.yml
Normal file
54
web/maplepress-frontend/Taskfile.yml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
version: "3"
|
||||
|
||||
tasks:
|
||||
# Development task to start the local development server
|
||||
dev:
|
||||
desc: "Start the development server with hot module replacement"
|
||||
cmds:
|
||||
- npm run dev
|
||||
|
||||
# Production build task
|
||||
build:
|
||||
desc: "Build the production version of the project"
|
||||
cmds:
|
||||
# Build the project using Vite's build command
|
||||
- npm run build
|
||||
|
||||
# Deployment task (similar to the original, but adapted for Vite)
|
||||
deploy:
|
||||
desc: "Build and deploy the production version to a static site repository"
|
||||
cmds:
|
||||
# Build the project
|
||||
- npm run build
|
||||
|
||||
# Checkout prod branch in the target repo
|
||||
- git -C ../../../maplepress-frontend-static checkout -B prod
|
||||
|
||||
# Copy build files (Vite generates the "dist" directory by default)
|
||||
- cp -Rf ./dist/* ../../../maplepress-frontend-static
|
||||
|
||||
# Remove build directory
|
||||
- rm -Rf ./dist
|
||||
|
||||
# Commit and push changes
|
||||
- git -C ../../../maplepress-frontend-static add --all
|
||||
- git -C ../../../maplepress-frontend-static commit -m 'Latest production deployment.'
|
||||
- git -C ../../../maplepress-frontend-static push origin prod
|
||||
|
||||
# Optional: Lint and type-check task
|
||||
lint:
|
||||
desc: "Run ESLint and TypeScript type checking"
|
||||
cmds:
|
||||
- npm run lint
|
||||
- npm run typecheck
|
||||
|
||||
# Optional: Run tests
|
||||
test:
|
||||
desc: "Run project tests"
|
||||
cmds:
|
||||
- npm run test
|
||||
|
||||
undelast:
|
||||
desc: Undue last commit which was not pushed. Special thanks to https://www.nobledesktop.com/learn/git/undo-changes.
|
||||
cmds:
|
||||
- git reset --soft HEAD~
|
||||
Loading…
Add table
Add a link
Reference in a new issue