@tgwf/co2 0.11.2 → 0.11.3
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/dist/cjs/index-node.js
CHANGED
|
@@ -22,12 +22,12 @@ var index_node_exports = {};
|
|
|
22
22
|
__export(index_node_exports, {
|
|
23
23
|
averageIntensity: () => import_average_intensities_2021_min.default,
|
|
24
24
|
co2: () => import_co2.default,
|
|
25
|
-
hosting: () =>
|
|
25
|
+
hosting: () => import_hosting_node.default,
|
|
26
26
|
marginalIntensity: () => import_marginal_intensities_2021_min.default
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(index_node_exports);
|
|
29
29
|
var import_co2 = __toESM(require("./co2.js"));
|
|
30
|
-
var
|
|
30
|
+
var import_hosting_node = __toESM(require("./hosting-node.js"));
|
|
31
31
|
var import_average_intensities_2021_min = __toESM(require("./data/average-intensities-2021.min.js"));
|
|
32
32
|
var import_marginal_intensities_2021_min = __toESM(require("./data/marginal-intensities-2021.min.js"));
|
|
33
33
|
//# sourceMappingURL=index-node.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index-node.js"],
|
|
4
|
-
"sourcesContent": ["import co2 from \"./co2.js\";\nimport hosting from \"./hosting.js\";\nimport averageIntensity from \"./data/average-intensities-2021.min.js\";\nimport marginalIntensity from \"./data/marginal-intensities-2021.min.js\";\nexport { co2, hosting, averageIntensity, marginalIntensity };\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAgB;AAChB,
|
|
4
|
+
"sourcesContent": ["import co2 from \"./co2.js\";\nimport hosting from \"./hosting-node.js\";\nimport averageIntensity from \"./data/average-intensities-2021.min.js\";\nimport marginalIntensity from \"./data/marginal-intensities-2021.min.js\";\nexport { co2, hosting, averageIntensity, marginalIntensity };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAgB;AAChB,0BAAoB;AACpB,0CAA6B;AAC7B,2CAA8B;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
package/src/index-node.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import co2 from "./co2.js";
|
|
2
|
-
import hosting from "./hosting.js";
|
|
2
|
+
import hosting from "./hosting-node.js";
|
|
3
3
|
import averageIntensity from "./data/average-intensities-2021.min.js";
|
|
4
4
|
import marginalIntensity from "./data/marginal-intensities-2021.min.js";
|
|
5
5
|
export { co2, hosting, averageIntensity, marginalIntensity };
|