Skip to content

Commit

Permalink
Build: Fix npm run build-dev to support Rollup 4
Browse files Browse the repository at this point in the history
Follows-up 3d8b99e. The module
changed upstream in Rollup 3.0 to use a named export instead.

Ref rollup/rollup@260bcf0ee4f.
  • Loading branch information
Krinkle committed Jun 7, 2024
1 parent 5e91e8a commit a7e10f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const rollup = require('rollup');
const kleur = require('kleur');
const watch = require('node-watch');
const loadConfigFile = require('rollup/dist/loadConfigFile.js');
const { loadConfigFile } = require('rollup/dist/loadConfigFile.js');

const { preprocess } = require('./dist-replace.js');

Expand Down

0 comments on commit a7e10f6

Please sign in to comment.