@flarehr/apollo-super-campaign
Advanced tools
Comparing version 0.1.47 to 0.1.48
{ | ||
"name": "@flarehr/apollo-super-campaign", | ||
"version": "0.1.47", | ||
"version": "0.1.48", | ||
"description": "Flare Apollo Campaign", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
import { defineConfig } from 'vite' | ||
import preact from '@preact/preset-vite' | ||
const entryFileName = 'apollo-super-campaign.js'; | ||
// https://vitejs.dev/config/ | ||
@@ -10,5 +12,19 @@ export default defineConfig(({command}) => { | ||
build: { | ||
sourcemap: true, // Enable source maps only for development | ||
rollupOptions: { | ||
output: { | ||
manualChunks: false, | ||
entryFileNames: entryFileName, | ||
format: 'iife', | ||
}, | ||
onLog(level, log, handler) { | ||
if (level === 'warn') { | ||
handler('info', log); // Azure Pipeline treats warnings as errors, so we log as info instead | ||
} else { | ||
handler(level, log); | ||
} | ||
}, | ||
}, | ||
chunkSizeWarningLimit: 1000, | ||
}, | ||
}; | ||
}) |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
421
61619
19