@enhance/arc-plugin-rollup
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "@enhance/arc-plugin-rollup", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Use rollup.js to bundle pages for the browser in your Enhance project", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -17,3 +17,3 @@ const { join } = require('path') | ||
const files = await readdir(browserDir) | ||
files.forEach(async file => { | ||
for (let file of files) { | ||
const inFile = join( | ||
@@ -38,7 +38,7 @@ cwd, | ||
bundle.write({ | ||
await bundle.write({ | ||
file: outFile, | ||
format: 'es' | ||
}) | ||
}) | ||
} | ||
} | ||
@@ -45,0 +45,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13556