You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/shakapacker-9.7.0/bin/shakapacker-config

12 lines
285 B

#!/usr/bin/env node
// Minimal shim - all logic is in the TypeScript module
const { run } = require("shakapacker/configExporter")
run(process.argv.slice(2))
.then((exitCode) => process.exit(exitCode))
.catch((error) => {
console.error(error.message)
process.exit(1)
})