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

@enhance/arc-plugin-rollup

Package Overview
Dependencies
Maintainers
7
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enhance/arc-plugin-rollup - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

3

package.json
{
"name": "@enhance/arc-plugin-rollup",
"version": "1.1.2",
"version": "1.1.3",
"description": "Use rollup.js to bundle pages for the browser in your Enhance project",

@@ -33,2 +33,3 @@ "main": "src/index.js",

"@architect/sandbox": "^5.4.1",
"@rollup/plugin-commonjs": "^24.0.1",
"eslint": "^8.32.0",

@@ -35,0 +36,0 @@ "tap-arc": "^0.3.5",

@@ -5,4 +5,5 @@ const { join } = require('path')

const { rollup } = require('rollup')
const { loadConfigFile } = require('rollup/loadConfigFile');
const { loadConfigFile } = require('rollup/loadConfigFile')
const resolve = require('@rollup/plugin-node-resolve')
const commonjs = require('@rollup/plugin-commonjs')

@@ -47,3 +48,6 @@ async function build(inv) {

input: inFile,
plugins: [resolve()]
plugins: [
resolve(),
commonjs()
]
})

@@ -69,3 +73,3 @@

config.input = inFile
config.plugins = [resolve()]
config.plugins.unshift(resolve())
const bundle = await rollup(config)

@@ -82,3 +86,3 @@ config.output.forEach(o => {

const memoize = (fn) => {
let cache = {};
let cache = {}
return async (obj) => {

@@ -85,0 +89,0 @@ if(obj in cache) {

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