Skip to content

Commit

Permalink
fix: require is not allowed in mjs files
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Oct 30, 2024
1 parent e281dca commit fb47cd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/tx-push-help.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
* Script get Knowledge base articles from Freshdesk and push them to transifex.
*/

import {txPush, txCreateResource} from '../lib/transifex.js';

const args = process.argv.slice(2);
const {txPush, txCreateResource} = require('../lib/transifex.js');

const usage = `
Pull knowledge base articles from Freshdesk and push to scratch-help project on transifex. Usage:
Expand Down

0 comments on commit fb47cd2

Please sign in to comment.