wrangler 3.109.0 → 3.109.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/wrangler-dist/cli.js +7 -17
package/package.json
CHANGED
package/wrangler-dist/cli.js
CHANGED
@@ -98662,7 +98662,7 @@ var import_undici3 = __toESM(require_undici());
|
|
98662
98662
|
|
98663
98663
|
// package.json
|
98664
98664
|
var name = "wrangler";
|
98665
|
-
var version = "3.109.
|
98665
|
+
var version = "3.109.1";
|
98666
98666
|
|
98667
98667
|
// src/environment-variables/misc-variables.ts
|
98668
98668
|
init_import_meta_url();
|
@@ -119820,28 +119820,18 @@ function handleUnenvAliasedPackages(build5, alias, external) {
|
|
119820
119820
|
external: external.includes(unresolvedAlias)
|
119821
119821
|
};
|
119822
119822
|
});
|
119823
|
-
build5.initialOptions.banner = { js: "", ...build5.initialOptions.banner };
|
119824
|
-
build5.initialOptions.banner.js += esm_default2`
|
119825
|
-
function __cf_cjs(esm) {
|
119826
|
-
const cjs = 'default' in esm ? esm.default : {};
|
119827
|
-
for (const [k, v] of Object.entries(esm)) {
|
119828
|
-
if (k !== 'default') {
|
119829
|
-
Object.defineProperty(cjs, k, {
|
119830
|
-
enumerable: true,
|
119831
|
-
value: v,
|
119832
|
-
});
|
119833
|
-
}
|
119834
|
-
}
|
119835
|
-
return cjs;
|
119836
|
-
}
|
119837
|
-
`;
|
119838
119823
|
build5.onLoad(
|
119839
119824
|
{ filter: /.*/, namespace: REQUIRED_UNENV_ALIAS_NAMESPACE },
|
119840
119825
|
({ path: path73 }) => {
|
119841
119826
|
return {
|
119842
119827
|
contents: esm_default2`
|
119843
119828
|
import * as esm from '${path73}';
|
119844
|
-
module.exports =
|
119829
|
+
module.exports = Object.entries(esm)
|
119830
|
+
.filter(([k,]) => k !== 'default')
|
119831
|
+
.reduce((cjs, [k, value]) =>
|
119832
|
+
Object.defineProperty(cjs, k, { value, enumerable: true }),
|
119833
|
+
"default" in esm ? esm.default : {}
|
119834
|
+
);
|
119845
119835
|
`,
|
119846
119836
|
loader: "js"
|
119847
119837
|
};
|