@salesforce/webapp-template-base-react-app-experimental 1.60.2 → 1.61.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
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.61.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.2...v1.61.0) (2026-03-02)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add mcp-todo-server package with SEP-1865 app UI ([#177](https://github.com/salesforce-experience-platform-emu/webapps/issues/177)) ([804428c](https://github.com/salesforce-experience-platform-emu/webapps/commit/804428c23b600884a08f7adb2a270b41be5a3022))
|
|
11
|
+
|
|
6
12
|
## [1.60.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.1...v1.60.2) (2026-02-27)
|
|
7
13
|
|
|
8
14
|
**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.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -15,5 +15,5 @@
|
|
|
15
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 install && npx playwright install chromium && npm run build:e2e && npx playwright test"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "07b4d7294c9f02c91b55788e157094db22168873"
|
|
19
19
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { PluginOption } from 'vite';
|
|
1
2
|
import { defineConfig } from 'vite';
|
|
2
3
|
import react from '@vitejs/plugin-react';
|
|
3
4
|
import path from 'path';
|
|
@@ -26,7 +27,7 @@ export default defineConfig(({ mode }) => {
|
|
|
26
27
|
// Fail build if codegen errors
|
|
27
28
|
throwOnBuild: true,
|
|
28
29
|
}),
|
|
29
|
-
],
|
|
30
|
+
] as PluginOption[],
|
|
30
31
|
|
|
31
32
|
// Build configuration for MPA
|
|
32
33
|
build: {
|