@salesforce/webapp-template-base-react-app-experimental 1.35.0 → 1.35.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.
package/.forceignore ADDED
@@ -0,0 +1,15 @@
1
+ # List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status
2
+ # More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm
3
+ #
4
+
5
+ package.xml
6
+
7
+ # LWC configuration files
8
+ **/jsconfig.json
9
+ **/.eslintrc.json
10
+
11
+ # LWC Jest
12
+ **/__tests__/**
13
+
14
+ node_modules/
15
+ .DS_Store
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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.35.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.1...v1.35.2) (2026-02-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adding template tests in ci @W-20919457 ([#114](https://github.com/salesforce-experience-platform-emu/webapps/issues/114)) ([ebd3d5a](https://github.com/salesforce-experience-platform-emu/webapps/commit/ebd3d5a5d1d84d7ae69b216de82da4a09edb6cb8))
11
+
12
+ ## [1.35.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.0...v1.35.1) (2026-02-18)
13
+
14
+ ### Bug Fixes
15
+
16
+ - adding forceignore per webapp @W-20226218@ ([#108](https://github.com/salesforce-experience-platform-emu/webapps/issues/108)) ([22773ae](https://github.com/salesforce-experience-platform-emu/webapps/commit/22773aea10541c8b38673425be158348c1cc74a1))
17
+
6
18
  # [1.35.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.34.0...v1.35.0) (2026-02-18)
7
19
 
8
20
  **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-react-app-experimental",
3
- "version": "1.35.0",
3
+ "version": "1.35.2",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,8 +12,8 @@
12
12
  "scripts": {
13
13
  "test": "npm run test:build && npm run test:e2e",
14
14
  "test:build": "cd src/force-app/main/default/webapplications/base-react-app && npm ci && npm run build",
15
- "test:coverage": "npm run test:e2e",
15
+ "test:coverage": "npm run test",
16
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"
17
17
  },
18
- "gitHead": "f5a09f495da596b527afbc72f4d82ea03816a21f"
18
+ "gitHead": "b76cec0816888528ccb040ecb91964fe45b9e843"
19
19
  }