@datawheel/canon-core
Version:
Reusable React environment and components for creating visualization engines.
12 lines (8 loc) • 322 B
JavaScript
const shell = require("shelljs");
const path = require("path");
const config = path.join(__dirname, "i18next-scanner.config.js");
shell.exec(`i18next-scanner --config ${config} '{app,src,node_modules/@datawheel/canon-*/src}/**/*.{html,js,jsx}'`, code => {
shell.echo("");
shell.exit(code);
});