Update Deploy Process and Github Pages Deployment#18
Open
Curucail wants to merge 11 commits intoaudiolabs:masterfrom
Open
Update Deploy Process and Github Pages Deployment#18Curucail wants to merge 11 commits intoaudiolabs:masterfrom
Curucail wants to merge 11 commits intoaudiolabs:masterfrom
Conversation
- Introduced new build scripts for CSS and JS using esbuild. - Replaced node-sass with sass for CSS compilation. - Removed grunt dependencies in favor of a simpler and more modern build process. - Added clean script to remove the dist directory before building.
refactor: update build process and dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request migrates the project's build and deployment process from Grunt and GitLab CI to a modern, Node.js-based workflow with GitHub Actions and esbuild #16 . It also moves the Jekyll-based documentation site for GitHub Pages to the master branch.
The most important changes are:
Build System Modernization:
Gruntfile.js, Grunt plugins frompackage.json, and the.gitlab-ci.ymlconfiguration. [1] [2] [3]build/concat-css.jsandbuild/concat-js.jsfor concatenation and banner insertion. [1] [2]Deployment and Documentation:
.github/workflows/deploy.yml) to automate building and deploying the site to GitHub Pages, including preparing assets and running Jekyll.docs/folder. [1] [2] [3] [4] [5] [6]Documentation and Usage Updates:
README.mdto reflect the new build process, removing Grunt instructions and adding npm script usage, as well as correcting a citation typo. [1] [2]