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

@vanilla-extract/esbuild-plugin

Package Overview
Dependencies
Maintainers
4
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vanilla-extract/esbuild-plugin - npm Package Compare versions

Comparing version 0.0.0-experimental-macros-202362471213 to 0.0.0-experimental-macros-20237146723

8

dist/vanilla-extract-esbuild-plugin.cjs.dev.js

@@ -6,2 +6,3 @@ 'use strict';

var path = require('path');
var promises = require('fs/promises');
var integration = require('@vanilla-extract/integration');

@@ -69,3 +70,8 @@

}) => {
const result = await compiler.processVanillaFile(path, {
const code = await promises.readFile(path, {
encoding: 'utf-8'
});
const result = await compiler.processVanillaFile({
filePath: path,
code,
outputCss

@@ -72,0 +78,0 @@ });

@@ -6,2 +6,3 @@ 'use strict';

var path = require('path');
var promises = require('fs/promises');
var integration = require('@vanilla-extract/integration');

@@ -69,3 +70,8 @@

}) => {
const result = await compiler.processVanillaFile(path, {
const code = await promises.readFile(path, {
encoding: 'utf-8'
});
const result = await compiler.processVanillaFile({
filePath: path,
code,
outputCss

@@ -72,0 +78,0 @@ });

import { dirname } from 'path';
import { readFile } from 'fs/promises';
import { vanillaExtractTransformPlugin, InlineCompiler } from '@vanilla-extract/integration';

@@ -64,3 +65,8 @@

}) => {
const result = await compiler.processVanillaFile(path, {
const code = await readFile(path, {
encoding: 'utf-8'
});
const result = await compiler.processVanillaFile({
filePath: path,
code,
outputCss

@@ -67,0 +73,0 @@ });

4

package.json
{
"name": "@vanilla-extract/esbuild-plugin",
"version": "0.0.0-experimental-macros-202362471213",
"version": "0.0.0-experimental-macros-20237146723",
"description": "Zero-runtime Stylesheets-in-TypeScript",

@@ -18,3 +18,3 @@ "main": "dist/vanilla-extract-esbuild-plugin.cjs.js",

"dependencies": {
"@vanilla-extract/integration": "^0.0.0-experimental-macros-202362471213"
"@vanilla-extract/integration": "^0.0.0-experimental-macros-20237146723"
},

@@ -21,0 +21,0 @@ "devDependencies": {

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