mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-01-23 22:04:45 +01:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
|
'use strict';
|
||
|
|
||
|
if (process.env.NODE_ENV === "production") {
|
||
|
module.exports = require("./changelog-git.cjs.prod.js");
|
||
|
} else {
|
||
|
module.exports = require("./changelog-git.cjs.dev.js");
|
||
|
}
|