@adobe/alloy 2.30.1-beta.20 → 2.30.1-beta.21

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.1-beta.20";
17
+ var _default = exports.default = "2.30.1-beta.21";
@@ -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.30.1-beta.20";
16
+ export default "2.30.1-beta.21";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/alloy",
3
- "version": "2.30.1-beta.20",
3
+ "version": "2.30.1-beta.21",
4
4
  "description": "Adobe Experience Platform Web SDK",
5
5
  "type": "module",
6
6
  "main": "libEs5/index.js",
@@ -21,36 +21,6 @@
21
21
  "bin": {
22
22
  "alloyBuilder": "scripts/alloyBuilder.js"
23
23
  },
24
- "scripts": {
25
- "clean": "rimraf dist distTest libEs5 libEs6 types",
26
- "lint": "eslint --cache --fix \"*.{js,cjs,mjs,jsx}\" \"{sandboxes/*/src,packages/*/src,test,scripts}/**/*.{js,cjs,mjs,jsx}\"",
27
- "format": "prettier --write \"*.{html,js,cjs,mjs,jsx}\" \"{sandboxes/*/src,packages/*/src,test,scripts}/**/*.{html,js,cjs,mjs,jsx}\"",
28
- "types": "tsc",
29
- "test": "pnpm exec playwright install chromium && vitest run && pnpm run test:scripts",
30
- "test:coverage": "rimraf coverage && pnpm exec playwright install chromium && vitest run --coverage",
31
- "test:unit": "pnpm exec playwright install chromium && vitest run --project=unit",
32
- "test:unit:debug": "pnpm exec playwright install chromium && vitest --no-file-parallelism --project=unit --browser=chromium --browser.provider=playwright --browser.headless=false",
33
- "test:unit:watch": "pnpm exec playwright install chromium && vitest --project=unit",
34
- "test:unit:coverage": "pnpm exec playwright install chromium && vitest run --coverage --project=unit",
35
- "test:integration": "pnpm exec playwright install chromium && vitest run --project=integration",
36
- "test:integration:debug": "pnpm exec playwright install chromium && vitest --no-file-parallelism --project=integration --browser=chromium --browser.provider=playwright --browser.headless=false",
37
- "test:integration:watch": "pnpm exec playwright install chromium && vitest --project=integration",
38
- "test:integration:coverage": "pnpm exec playwright install chromium && vitest run --coverage --project=integration",
39
- "test:functional": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" testcafe chromium",
40
- "test:functional:custom": "node scripts/helpers/runFunctionalTests.js",
41
- "test:functional:watch": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" ./scripts/watchFunctionalTests.js --browsers chromium",
42
- "test:functional:debug": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" testcafe --inspect-brk chromium",
43
- "test:functional:build:int": "rollup -c --environment BASE_CODE_MIN,STANDALONE,NPM_PACKAGE_LOCAL",
44
- "test:functional:build:prod": "rollup -c --environment BASE_CODE_MIN,NPM_PACKAGE_PROD",
45
- "test:scripts": "vitest run --config=./scripts/specs/vitest.config.js",
46
- "dev": "concurrently --names build,sandbox \"rollup -c -w --environment SANDBOX_SERVICE_WORKER\" \"REACT_APP_NONCE=123 pnpm run --filter @adobe/alloy-sandbox-browser start\"",
47
- "build": "pnpm run clean && rollup -c --environment BASE_CODE_MIN,STANDALONE,STANDALONE_MIN,SERVICE_WORKER,SERVICE_WORKER_MIN && echo \"Base Code:\" && cat distTest/baseCode.min.js",
48
- "build:watch": "pnpm run clean && rollup -c --watch --environment BASE_CODE_MIN,STANDALONE",
49
- "build:custom": "node scripts/alloyBuilder.js",
50
- "prepare": "husky",
51
- "prepack": "pnpm run clean && babel packages/core/src -d libEs5 --env-name npmEs5 && babel packages/core/src -d libEs6 --env-name npmEs6 && echo '{\"type\":\"commonjs\"}' > libEs5/package.json && echo '{\"type\":\"module\"}' > libEs6/package.json && pnpm run types",
52
- "checkthattestfilesexist": "./scripts/checkThatTestFilesExist.js"
53
- },
54
24
  "lint-staged": {
55
25
  "./*.{cjs,mjs,js,jsx}": [
56
26
  "eslint --cache --fix"
@@ -92,6 +62,8 @@
92
62
  "@adobe/alloy": "next",
93
63
  "@babel/cli": "^7.28.3",
94
64
  "@babel/plugin-transform-modules-commonjs": "^7.27.1",
65
+ "@changesets/changelog-github": "^0.5.2",
66
+ "@changesets/cli": "^2.29.8",
95
67
  "@eslint/js": "^9.38.0",
96
68
  "@octokit/rest": "^22.0.1",
97
69
  "@types/node": "^24.9.1",
@@ -122,10 +94,37 @@
122
94
  "testcafe": "^3.7.2",
123
95
  "testcafe-browser-provider-playwright": "^1.1.0",
124
96
  "typescript": "^5.9.3",
125
- "url-exists-nodejs": "^0.2.4",
126
97
  "vitest": "^4.0.6"
127
98
  },
128
99
  "optionalDependencies": {
129
100
  "@rollup/rollup-linux-x64-gnu": "^4.52.5"
101
+ },
102
+ "scripts": {
103
+ "clean": "rimraf dist distTest libEs5 libEs6 types",
104
+ "lint": "eslint --cache --fix \"*.{js,cjs,mjs,jsx}\" \"{sandboxes/*/src,packages/*/src,test,scripts}/**/*.{js,cjs,mjs,jsx}\"",
105
+ "format": "prettier --write \"*.{html,js,cjs,mjs,jsx}\" \"{sandboxes/*/src,packages/*/src,test,scripts}/**/*.{html,js,cjs,mjs,jsx}\"",
106
+ "types": "tsc",
107
+ "test": "pnpm exec playwright install chromium && vitest run && pnpm run test:scripts",
108
+ "test:coverage": "rimraf coverage && pnpm exec playwright install chromium && vitest run --coverage",
109
+ "test:unit": "pnpm exec playwright install chromium && vitest run --project=unit",
110
+ "test:unit:debug": "pnpm exec playwright install chromium && vitest --no-file-parallelism --project=unit --browser=chromium --browser.provider=playwright --browser.headless=false",
111
+ "test:unit:watch": "pnpm exec playwright install chromium && vitest --project=unit",
112
+ "test:unit:coverage": "pnpm exec playwright install chromium && vitest run --coverage --project=unit",
113
+ "test:integration": "pnpm exec playwright install chromium && vitest run --project=integration",
114
+ "test:integration:debug": "pnpm exec playwright install chromium && vitest --no-file-parallelism --project=integration --browser=chromium --browser.provider=playwright --browser.headless=false",
115
+ "test:integration:watch": "pnpm exec playwright install chromium && vitest --project=integration",
116
+ "test:integration:coverage": "pnpm exec playwright install chromium && vitest run --coverage --project=integration",
117
+ "test:functional": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" testcafe chromium",
118
+ "test:functional:custom": "node scripts/helpers/runFunctionalTests.js",
119
+ "test:functional:watch": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" ./scripts/watchFunctionalTests.js --browsers chromium",
120
+ "test:functional:debug": "pnpm exec playwright install chromium && EDGE_BASE_PATH=\"ee-pre-prd\" ALLOY_ENV=\"int\" testcafe --inspect-brk chromium",
121
+ "test:functional:build:int": "rollup -c --environment BASE_CODE_MIN,STANDALONE,NPM_PACKAGE_LOCAL",
122
+ "test:functional:build:prod": "rollup -c --environment BASE_CODE_MIN,NPM_PACKAGE_PROD",
123
+ "test:scripts": "vitest run --config=./scripts/specs/vitest.config.js",
124
+ "dev": "concurrently --names build,sandbox \"rollup -c -w --environment SANDBOX_SERVICE_WORKER\" \"REACT_APP_NONCE=123 pnpm run --filter @adobe/alloy-sandbox-browser start\"",
125
+ "build": "pnpm run clean && rollup -c --environment BASE_CODE_MIN,STANDALONE,STANDALONE_MIN,SERVICE_WORKER,SERVICE_WORKER_MIN && echo \"Base Code:\" && cat distTest/baseCode.min.js",
126
+ "build:watch": "pnpm run clean && rollup -c --watch --environment BASE_CODE_MIN,STANDALONE",
127
+ "build:custom": "node scripts/alloyBuilder.js",
128
+ "checkthattestfilesexist": "./scripts/checkThatTestFilesExist.js"
130
129
  }
131
- }
130
+ }