@adobe/alloy 2.26.0-beta.4 → 2.26.0-beta.5

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.
@@ -14,4 +14,4 @@ governing permissions and limitations under the License.
14
14
  */
15
15
  // The __VERSION__ keyword will be replace at alloy build time with the package.json version.
16
16
  // see babel-plugin-version
17
- var _default = exports.default = "2.26.0-beta.4";
17
+ var _default = exports.default = "2.26.0-beta.5";
@@ -13,4 +13,4 @@ governing permissions and limitations under the License.
13
13
  // The __VERSION__ keyword will be replace at alloy build time with the package.json version.
14
14
  // see babel-plugin-version
15
15
 
16
- export default "2.26.0-beta.4";
16
+ export default "2.26.0-beta.5";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/alloy",
3
- "version": "2.26.0-beta.4",
3
+ "version": "2.26.0-beta.5",
4
4
  "description": "Adobe Experience Platform Web SDK",
5
5
  "type": "module",
6
6
  "main": "libEs5/index.js",
@@ -87,7 +87,7 @@
87
87
  "uuid": "^11.1.0"
88
88
  },
89
89
  "devDependencies": {
90
- "@adobe/alloy": "^2.26.0-beta.3",
90
+ "@adobe/alloy": "^2.26.0-beta.4",
91
91
  "@babel/cli": "^7.26.4",
92
92
  "@babel/plugin-transform-runtime": "^7.26.9",
93
93
  "@eslint/js": "^9.20.0",
@@ -71,7 +71,7 @@ const getComponents = (() => {
71
71
  })();
72
72
 
73
73
  const getOutputFilePath = (argv) => {
74
- const outputPath = safePathJoin(
74
+ const outputPath = path.join(
75
75
  argv.outputDir,
76
76
  `alloy${argv.minify ? ".min" : ""}.js`,
77
77
  );
@@ -161,7 +161,7 @@ const getMakeBuildCommand = () => {
161
161
  .default(getProjectRoot())
162
162
  .argParser((value) => {
163
163
  if (!path.isAbsolute(value)) {
164
- value = safePathJoin(getProjectRoot(), value);
164
+ value = path.join(process.cwd(), value);
165
165
  }
166
166
 
167
167
  try {