Skip to content

Commit

Permalink
fix: prefix bundles with 'auro' namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Friedberg committed Nov 6, 2024
1 parent a20d8ff commit 0679dee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const getComponentEntryPoints = () => {
};

const createConfig = (name, input, output) => ({
input: { [`${name}__bundled`]: input },
input: { [`auro-${name}__bundled`]: input },
output: {
format: 'esm',
dir: output,
Expand All @@ -40,7 +40,7 @@ const createConfig = (name, input, output) => ({
]
});

const mainConfig = createConfig('auro-form', './index.js', 'dist');
const mainConfig = createConfig('formkit', './index.js', 'dist');
const componentConfigs = getComponentEntryPoints().map(({ name, input, output }) =>
createConfig(name, input, output)
);
Expand Down

0 comments on commit 0679dee

Please sign in to comment.