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

pika-plugin-build-web-babel

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pika-plugin-build-web-babel - npm Package Compare versions

Comparing version 0.12.1 to 0.12.2

2

package.json
{
"name": "pika-plugin-build-web-babel",
"description": "A @pika/pack plugin: Adds an babel compiled ESM distribution to your package",
"version": "0.12.1",
"version": "0.12.2",
"files": [

@@ -6,0 +6,0 @@ "src/"

@@ -21,2 +21,3 @@ var path = (require('path'));

const dirMap = {
iife: 'dist-iife',
umd: 'dist-umd',

@@ -30,2 +31,3 @@ cjs: 'dist-node',

umd: 'umd:main',
iife: 'iife:main',
};

@@ -84,3 +86,3 @@ function manifest(manifest, { options }) {

].filter(Boolean);
plugins.push(commonjs());

@@ -119,3 +121,3 @@

if (format === 'umd') {
if (format === 'umd' || format === 'iife') {
external = options.external || ['react', 'react-dom'];

@@ -169,3 +171,3 @@ plugins.push(replace({

};
if (format === 'umd') {
if (format === 'umd' || format === 'iife') {
output = {

@@ -172,0 +174,0 @@ ...output,

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