Here’s a list of build-time compatible libraries that specifically work with SuiteCloud projects:
Think of build-time libraries as your comprehensive developer toolkit, enabling a range of functions:
- Minification: To enhance project size and performance, build-time libraries can minify your code. This process eliminates redundant characters and formatting, thereby reducing file size and improving load times without altering functionality. Examples of such libraries include Webpack, gulp-uglify, and ESBuild.
- Dependency Management: Handling a multitude of dependencies in a project can be daunting. Package managers like npm can automate the process of installing, managing, and versioning required libraries to streamline the build process, thus ensuring a more efficient deployment.
- Transpilation: For projects utilizing advanced JavaScript features that the runtime environment does not natively support, build-time libraries such as @babel/core are capable of transpiling the syntax into a version compatible with the target environment, enabling flawless execution.
