Skip to content

Commit

Permalink
fix pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
cjtantay committed May 31, 2024
1 parent c57d6dd commit 04fbda7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/engines/rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ export class RollupEngine extends BaseEngine {
async buildEmbed(output) {
// baker-embed.js
const embedBundle = await rollup({
input: 'lib/components/baker-embed.js',
input: join(process.env.PWD, 'lib', 'components', 'baker-embed.js'),
plugins: [
nodeResolve({ extensions: ['.js'], browser: true }),
commonjs(),
Expand Down Expand Up @@ -436,7 +436,7 @@ export class RollupEngine extends BaseEngine {

// web-components.js
const webComponentBundle = await rollup({
input: 'lib/components/web-component.js',
input: join(process.env.PWD, 'lib', 'components', 'web-component.js'),
plugins: [
nodeResolve({ extensions: ['.js'], browser: true }),
commonjs(),
Expand Down

0 comments on commit 04fbda7

Please sign in to comment.