@adobe/alloy 2.21.0-beta.6 → 2.21.0-beta.7
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.21.0-beta.
|
|
17
|
+
var _default = exports.default = "2.21.0-beta.7";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/alloy",
|
|
3
|
-
"version": "2.21.0-beta.
|
|
3
|
+
"version": "2.21.0-beta.7",
|
|
4
4
|
"description": "Adobe Experience Platform Web SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "libEs5/index.js",
|
|
@@ -77,14 +77,10 @@
|
|
|
77
77
|
"@adobe/reactor-load-script": "^1.1.1",
|
|
78
78
|
"@adobe/reactor-object-assign": "^1.0.0",
|
|
79
79
|
"@adobe/reactor-query-string": "^1.0.0",
|
|
80
|
-
"@babel/cli": "^7.24.7",
|
|
81
80
|
"@babel/core": "^7.24.7",
|
|
82
81
|
"@babel/eslint-parser": "^7.24.7",
|
|
83
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
|
|
84
|
-
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
85
82
|
"@babel/plugin-transform-template-literals": "^7.24.7",
|
|
86
83
|
"@babel/preset-env": "^7.24.7",
|
|
87
|
-
"@babel/types": "^7.24.7",
|
|
88
84
|
"@rollup/plugin-babel": "^6.0.4",
|
|
89
85
|
"@rollup/plugin-commonjs": "^26.0.1",
|
|
90
86
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
@@ -101,7 +97,7 @@
|
|
|
101
97
|
"uuid": "^9.0.1"
|
|
102
98
|
},
|
|
103
99
|
"devDependencies": {
|
|
104
|
-
"@adobe/alloy": "^2.21.0-beta.
|
|
100
|
+
"@adobe/alloy": "^2.21.0-beta.6",
|
|
105
101
|
"@eslint/js": "^9.4.0",
|
|
106
102
|
"@octokit/rest": "^20.1.1",
|
|
107
103
|
"bundlesize": "^0.18.2",
|
package/scripts/alloyBuilder.js
CHANGED
|
@@ -16,11 +16,13 @@ import path from "path";
|
|
|
16
16
|
import { rollup } from "rollup";
|
|
17
17
|
import { Command, Option, InvalidOptionArgumentError } from "commander";
|
|
18
18
|
import inquirer from "inquirer";
|
|
19
|
+
import { fileURLToPath } from "url";
|
|
19
20
|
import { buildConfig } from "../rollup.config.js";
|
|
20
21
|
import conditionalBuildBabelPlugin from "./helpers/conditionalBuildBabelPlugin.js";
|
|
21
22
|
import components from "./helpers/alloyComponents.js";
|
|
22
23
|
|
|
23
|
-
const dirname = import.meta.
|
|
24
|
+
const dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
25
|
+
|
|
24
26
|
let sourceRootPath = `${dirname}/../src`;
|
|
25
27
|
if (!fs.existsSync(sourceRootPath)) {
|
|
26
28
|
sourceRootPath = `${dirname}/../libEs6`;
|