New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sovendus-builder

Package Overview
Dependencies
Maintainers
0
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sovendus-builder

An all-in-one build/bundle tool based on vite and rollup. Build anything from vanilla js to typescript react.

  • 1.1.20
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
250
decreased by-68.51%
Maintainers
0
Weekly downloads
 
Created
Source

Sovendus Builder

Sovendus Builder is an all-in-one build/bundle tool based on Vite and Rollup. It is designed to cover all your needs for bundling/compiling vanilla TypeScript, React, and React with Tailwind CSS. This tool is primarily intended for use within Sovendus TypeScript projects, including our Sovendus integration testing browser extension and Sovendus Plugins.

Installation

To install Sovendus Builder, run the following command:

npm install sovendus-builder

Example Configuration

Create a file called sov_build.config.ts in your project root with the following content and adjust it based on your needs:

import type { BuildConfig } from "sovendus-builder";

const config: BuildConfig = {
  foldersToClean: ["./dist"],
  filesToCompile: [
    {
      input: "./src/input.ts",
      output: "./dist/output.js",
      options: { type: "vanilla-ts" },
    },
    {
      input: "./src/input.tsx",
      output: "./dist/output.js",
      options: { type: "react" },
    },
    {
      input: "./src/input.tsx",
      output: "./dist/output.js",
      options: { type: "react-tailwind" },
    },
  ],
  filesOrFoldersToCopy: [
    {
      input: "./src/some_file_input.png",
      output: "./dist/some_target/some_file_input.png",
    },
    {
      input: "./src/some_folder_with_stuff",
      output: "./dist/some_folder_with_stuff",
    },
  ],
};

export default config;

Example Usage

In your package.json, you can then build with the following command:

{
  "scripts": {
    "build": "sovendus-builder build"
  }
}

Contributing

If you want to contribute or report issues, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Commit your changes and push your branch to your fork.
  4. Create a pull request to the main repository.

See our developer guide here: Developer Guide

Keywords

FAQs

Package last updated on 20 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc