@salesforce/webapp-template-base-react-app-experimental 1.54.0 → 1.54.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.54.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.0...v1.54.1) (2026-02-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **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))
11
+
6
12
  # [1.54.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.2...v1.54.0) (2026-02-25)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-react-app-experimental",
3
- "version": "1.54.0",
3
+ "version": "1.54.1",
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 ci && npm run build",
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 ci && npx playwright install chromium && npm run build:e2e && npx playwright test"
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": "b48827161c23db20c7e546a857fe8c9f5f560c20"
18
+ "gitHead": "6defeb0540e40000b92f0c88fc822cf8de1758b9"
19
19
  }