@salesforce/webapp-template-base-react-app-experimental 1.54.0 → 1.55.0
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/CHANGELOG.md +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.55.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.1...v1.55.0) (2026-02-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
|
|
9
|
+
|
|
10
|
+
## [1.54.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.0...v1.54.1) (2026-02-25)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **base-react-app:** use npm install instead of npm ci in test scripts ([#169](https://github.com/salesforce-experience-platform-emu/webapps/issues/169)) ([915af70](https://github.com/salesforce-experience-platform-emu/webapps/commit/915af70cd7fb586a7c8befa64402bdbd7dd69266))
|
|
15
|
+
|
|
6
16
|
# [1.54.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.2...v1.54.0) (2026-02-25)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-base-react-app-experimental",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.55.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "npm run test:build && npm run test:e2e",
|
|
14
|
-
"test:build": "cd src/force-app/main/default/webapplications/base-react-app && npm
|
|
14
|
+
"test:build": "cd src/force-app/main/default/webapplications/base-react-app && npm install && npm run build",
|
|
15
15
|
"test:coverage": "npm run test",
|
|
16
|
-
"test:e2e": "cd src/force-app/main/default/webapplications/base-react-app && rm -rf node_modules && npm
|
|
16
|
+
"test:e2e": "cd src/force-app/main/default/webapplications/base-react-app && rm -rf node_modules && npm install && npx playwright install chromium && npm run build:e2e && npx playwright test"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "1c1e2f3f2de3f9ef18a3efec5f477775ccf72d31"
|
|
19
19
|
}
|