Skip to content

Commit

Permalink
chore: Export utils-dom from dist (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgylobko authored Aug 1, 2024
1 parent 574619a commit 15ad142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-exports.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const fs = require('node:fs');

// This package exposes several APIs in different files. For each export we generate a separate file in the repository root
const publicExports = ['dom', 'selectors', 'utils'];
const publicExports = ['dom', 'selectors', 'utils', 'utils-dom'];

publicExports.forEach(exportName => {
fs.writeFileSync(`./lib/core/${exportName}.js`, `module.exports = require('./dist/${exportName}')`);
Expand Down

0 comments on commit 15ad142

Please sign in to comment.