Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@warp-ds/esbuild-plugin

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@warp-ds/esbuild-plugin

Used along with [@warp-ds/elements-core](https://github.com/warp-ds/warp-element) this ESBuild plugin lets you get a minimal set of UnoCSS utility CSS classes for your `WarpElement.styles` property.

  • 2.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

@warp-ds/esbuild-plugin

Used along with @warp-ds/elements-core this ESBuild plugin lets you get a minimal set of UnoCSS utility CSS classes for your WarpElement.styles property.

Usage

npm install @warp-ds/esbuild-plugin
// build.js
import * as glob from "glob";
import * as esbuild from "esbuild";
import * as eik from "@eik/esbuild-plugin";
import warpPlugin from "@warp-ds/esbuild-plugin";

const useWatch = (process.argv[2] && process.argv[2] === "watch") || false;

/**
 * @type {import("esbuild").BuildOptions}
 */
const clientBuildOptions = {
	entryPoints: ["./src/client/client.js"],
	format: "esm",
	logLevel: "info", // Adjust this if you get problems
	bundle: true,
	platform: "browser",
	sourcemap: true,
	plugins: [
		eik.plugin(), // Enables the use of Eik import maps
		warpPlugin(), // Ensures WARP gets added to components
	],
	minify: true,
	target: ["es2022"],
	outfile: "./public/${{ values.name }}.js",
};

const files = glob.sync("./src/**/*.js");

/**
 * @type {import("esbuild").BuildOptions}
 */
const serverBuildOptions = {
	entryPoints: files,
	outdir: "./build",
	format: "esm",
	logLevel: "info", // Adjust this if you get problems
	bundle: false,
	platform: "node",
	sourcemap: true,
	plugins: [
		warpPlugin(), // Ensures WARP gets added to server-side rendered components
	],
	minify: false,
	target: ["es2022"],
};

// Build or watch
if (useWatch) {
	const ctxClient = await esbuild.context(clientBuildOptions);
	const ctxServer = await esbuild.context(serverBuildOptions);
	await Promise.all([ctxClient.watch(), ctxServer.watch()]);
} else {
	await Promise.all([esbuild.build(clientBuildOptions), esbuild.build(serverBuildOptions)]);
}
// Component.js
export class HelloWorld extends WarpElement {
	static styles = [
		css`
			@warp-css;
		`,
		WarpElement.styles,
	];

	render() {
		return html`
			<p class="text-xl p-32 m-16">
				Hello, World!
			</p>
		`;
	}
}

if (!customElements.get("hello-world")) {
	customElements.define("hello-world", HelloWorld);
}

FAQs

Package last updated on 16 Oct 2024

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