@adobe/alloy 2.30.0-beta.0 → 2.30.0-beta.2
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.30.0-beta.
|
|
17
|
+
var _default = exports.default = "2.30.0-beta.2";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/alloy",
|
|
3
|
-
"version": "2.30.0-beta.
|
|
3
|
+
"version": "2.30.0-beta.2",
|
|
4
4
|
"description": "Adobe Experience Platform Web SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "libEs5/index.js",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"uuid": "^11.1.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@adobe/alloy": "
|
|
94
|
+
"@adobe/alloy": "2.30.0-beta.1",
|
|
95
95
|
"@babel/cli": "^7.28.3",
|
|
96
96
|
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
|
|
97
97
|
"@eslint/js": "^9.35.0",
|
package/scripts/alloyBuilder.js
CHANGED
|
@@ -247,8 +247,8 @@ const getMakeBuildCommand = () => {
|
|
|
247
247
|
};
|
|
248
248
|
|
|
249
249
|
const getPushNotificationsServiceWorkerBuildCommand = () =>
|
|
250
|
-
new Command("build-
|
|
251
|
-
.description("Build the
|
|
250
|
+
new Command("build-sw")
|
|
251
|
+
.description("Build the s ervice worker.")
|
|
252
252
|
.addOption(
|
|
253
253
|
new Option("-m, --minify", "enable code minification").default(false),
|
|
254
254
|
)
|
|
@@ -282,9 +282,9 @@ const getPushNotificationsServiceWorkerBuildCommand = () =>
|
|
|
282
282
|
});
|
|
283
283
|
|
|
284
284
|
const getInteractivePushNotificationsServiceWorkerBuildCommand = () =>
|
|
285
|
-
new Command("interactive-build-
|
|
285
|
+
new Command("interactive-build-sw")
|
|
286
286
|
.description(
|
|
287
|
-
"Interactive process that will ask a series of questions and then it will generate a
|
|
287
|
+
"Interactive process that will ask a series of questions and then it will generate a service worker build.",
|
|
288
288
|
)
|
|
289
289
|
.action(async () => {
|
|
290
290
|
try {
|