Skip to content

Commit

Permalink
Update rollup.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Jan 31, 2023
1 parent 46eb9fd commit b7e03ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import path from 'path';

const splitter = /\n|\s|,/g;

const outputFilePath = process.env.BUILD_OUTPUT || './dist/fabric.js';
const buildOutput = process.env.BUILD_OUTPUT || './dist/fabric.js';

const dirname = path.dirname(outputFilePath);
const basename = path.basename(outputFilePath, '.js');
const dirname = path.dirname(buildOutput);
const basename = path.basename(buildOutput, '.js');

const plugins = [
json(),
Expand Down

0 comments on commit b7e03ca

Please sign in to comment.